Hello people:rose:, i have a rather unique problem. in my application i have two tierd property sheets. (on the main dialog i have a property sheet with some pages and on each of the pages i have a property sheet and some pages) all the property sheets are created at run time and the program wortks fine. The problem starts when i try to add any control on the base dialog. in case a control is added, the program just doesnt pop any windows (file dialog for example) the whole application just hangs:((. Can somebody tell me as to why this may be happening and what may be the possible solution. The Debugger
C
conio
@conio
Posts
-
PropertySheet and Popup Windows -
ComboBoxthis code would not budge because you are trying to add the strings to some objects which aren't even created, forget about the initialization which is manatory for the working of the gui object The Debugger:omg:
-
c++ graphicsi think that you are using the good old turbo c++. try the funtion itoa(int val,char* buffer,int base) to convert the integer to a string and then use the string. for floats you can use ftoa(float val,char* buffer,int base). to get the int ir the float back use atoi or atof etc. The Debugger:omg: