Hi!
I have just started trying to program in "C++" since I know "C" but its not for GUI. All my functions are made in "C", only the needed part for the graphics are in "C++".
I have a static text box in "case WM_CREATE:":
How do I make it after the results are calculated, to be displayed on the static text box, perhaps by usign "case WM_COMMAND:", any examples are appreciated!
I have just started trying to program in "C++" since I know "C" but its not for GUI. All my functions are made in "C", only the needed part for the graphics are in "C++".
I have a static text box in "case WM_CREATE:":
Code:
hStaticTextBox = CreateWindow ("STATIC",
"Results, also included in 'Report.txt':",
WS_BORDER | WS_CHILD | WS_VISIBLE,
10, 40, 400, 250,
hwnd,
(HMENU) 2, NULL, NULL);