Hi,
I want to develop a Visual C++ application with GUI (Visual C++ Form)& the GUI related class is created in the header file with their component callbacks by default.
So when in .c file in main function, once GUI object is created using that class, then after thatwhen I press any button in GUI the execution gets transferred into header file (because callbacks are in header file by default).
So how to get that execution flow back in the main function (in .c file)??