Hi,
I've developed a C++ DLL that process incoming SMS messages and an EXE VB application that run as a standard program.
How can I call a specific function of EXE VB program from the DLL
I'm trying to develop an SMS filter that receive only messages that come from a specific phone numbers. DLL (MAPIRule) intercept SMS message, call VB program function that check if the phone number is good and return a value to DLL.
Thanks a lot

Call VB external function from a DLL
Pocketmnky
You can not call functions in EXEs and you can not call any managed code from native.
You can, however, call your C++ DLL from VB EXE. You also can do callback from native DLL to VB EXE in NETCF V2.
Danny Tuppeny
Ok, thanks
Could you give me an example of callback function in VB
Markus Sch.