|
-
August 19th, 1999, 02:10 PM
#1
API
I have "C" callable library of functions that allow custom applications to interface with the Fax Server.
I desperately need to know what to do to be able to use that functions in the VB(5,6) environment the same way as we use Windows API for VB.
Thanks in advance,
Joseph K
-
August 20th, 1999, 02:29 AM
#2
Re: API
you need to create Declare statements for each of your callable functions such as:
Declare function foo Lib "yourdll" (byval YourArgument as integer ) as integer
then, in VB you just write
dim lResult as integer
lResult = foo( iArg )
-
August 20th, 1999, 05:59 PM
#3
Re: API
Thank you very very much.
Joseph K
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|