Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dot net class libraries and VFP ?
Message
From
02/08/2004 05:38:16
 
 
To
02/08/2004 05:26:25
Eyvind W. Axelsen
Profdoc Norge As
Oslo, Norway
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Miscellaneous
Thread ID:
00917812
Message ID:
00930054
Views:
41
Eyvind,

You can use the Platform API to communicate the "traditional" way using SendMessage or PostMessage for which there are lots of examples on MSDN. You will have to override the forms WndProc and filter the incoming messages - not as easy as a COM wrapper but it works well.
protected override void WndProc(ref Message m)
{
   base.WndProc(ref m);
}
Regards
Neil
Previous
Reply
Map
View

Click here to load this message in the networking platform