hi all,
I am working in a carbon c++ application using XCode in MAC machine.
I have a class name MainWindow.
I created a object as
MainWindow *mainwindow = new MainWindow(2);
MainWindow class has the function GetEditFieldData()
When i call that function as
mainwindow.GetEditFieldData()
it shows the error as
request for member 'GetEditFieldData' in 'mainwindow', which is of non-class type 'MainWindow'
how can i solve this problem?
Thanks in advance and urgent plz....
I am working in a carbon c++ application using XCode in MAC machine.
I have a class name MainWindow.
I created a object as
MainWindow *mainwindow = new MainWindow(2);
MainWindow class has the function GetEditFieldData()
When i call that function as
mainwindow.GetEditFieldData()
it shows the error as
request for member 'GetEditFieldData' in 'mainwindow', which is of non-class type 'MainWindow'
how can i solve this problem?
Thanks in advance and urgent plz....