G
Guest
Hi,
I need to make a function that can display data on my Managed C++ app and be
called by an unmanaged C++ DLL. Something like :
void Form1::Form1_Load(System::Object * sender, System::EventArgs * e)
{
MyDLLInit(MyAppDisplayFunction);
}
void Form1::MyAppDisplayFunction()
{
MyAppTextBox->Text = S"My DLL called this function";
}
Can I make that with CALLBACK ? If so, how to access member from callback?
Any ideas,
Hugo
I need to make a function that can display data on my Managed C++ app and be
called by an unmanaged C++ DLL. Something like :
void Form1::Form1_Load(System::Object * sender, System::EventArgs * e)
{
MyDLLInit(MyAppDisplayFunction);
}
void Form1::MyAppDisplayFunction()
{
MyAppTextBox->Text = S"My DLL called this function";
}
Can I make that with CALLBACK ? If so, how to access member from callback?
Any ideas,
Hugo