I made an SDI application. I want to invoke it by clicking a button on a dialog in another application.
I am using VC++ and tried including the header file of former
#include "..\TypingEditor\TypingEditor.h"
and then creating its object with 'new'.
CTypingEditorApp *te = new CTypingEditorApp();
But there are errors saying:
public: __thiscall CTypingEditorApp::CTypingEditorApp(void)" (??0CTypingEditorApp@@QAE@XZ)
What am i missing or diong wrong?