Re: How do I create an API?
Go to
http://www.allapi.net/
You'' find there all available API that you can use in VB
Iouri Boutchkine
[email protected]
Re: How do I create an API?
You want your control to respond to custom messages?
This requires subclassing, to intercept the message and - for your own custom messages, use of the RegisterWindowsMessage() API.
Your best bet is to download the source code for the MCI Hotkey control from http://www.merrioncomputing.com/Download/index.htm as this example registers a new windows message and then shows how to intercept it in the VB_WindowProc() subroutine.
HTH,
Duncan
-------------------------------------------------
Ex. Datis: Duncan Jones
Merrion Computing Ltd
http://www.merrioncomputing.com
Re: How do I create an API?
Thank you for the heads up!!
Raistlin