Hello,
(This is in VS2010) I'm trying to create a generic dialog box that comes up when my extension dll is loaded onto the client application (Takion.exe). This is a trading platform and has its own API with severely scarce documentation; this is all I have:
Just wanted to inquire of any ideas to pursue this; the API itself has header files corresponding to the API library. One of the classes in the API is inherited class of CDialog:
class TakionDialog: public CDialog
Takion dialog in turn has several derived classes. In the .cpp file corresponding to the entry point header, between #ifdef __cplusplus #endif..........#ifdef __cplusplus #endif there is a void WINAPI ExtensionInitialize() method where the dialog box class and its methods are called.
I realize that a lot of information depends on the API code, however any feedback in regards to dynamically calling a dialog box is much appreciated. I'm ultimately trying to extract and display the data in the dialog box if that is relevant at all. I'm fairly new to C++ (been at it for 2.5 weeks now) and as always, any help is greatly appreciated.
(This is in VS2010) I'm trying to create a generic dialog box that comes up when my extension dll is loaded onto the client application (Takion.exe). This is a trading platform and has its own API with severely scarce documentation; this is all I have:
Just wanted to inquire of any ideas to pursue this; the API itself has header files corresponding to the API library. One of the classes in the API is inherited class of CDialog:
class TakionDialog: public CDialog
Takion dialog in turn has several derived classes. In the .cpp file corresponding to the entry point header, between #ifdef __cplusplus #endif..........#ifdef __cplusplus #endif there is a void WINAPI ExtensionInitialize() method where the dialog box class and its methods are called.
I realize that a lot of information depends on the API code, however any feedback in regards to dynamically calling a dialog box is much appreciated. I'm ultimately trying to extract and display the data in the dialog box if that is relevant at all. I'm fairly new to C++ (been at it for 2.5 weeks now) and as always, any help is greatly appreciated.