|
-
November 17th, 1999, 11:29 PM
#1
API? How do you people "extract" API stuff from new DLLs??
I also need an advise on book which has basic VB functions and everything about them (where they used, what for, syntax, examples on how to use it, etc.)
-
November 18th, 1999, 03:11 AM
#2
Re: API? How do you people "extract" API stuff from new DLLs??
Extracting functions from a dll: nope, no way. You can use quickview to see export functions of a dll (which are the functions you can call) but you only see names, no parameters...
A book? I don't know, MSDN helped me pretty much :-)
Crazy D @ Work :-)
-
November 18th, 1999, 03:13 AM
#3
Re: API? How do you people "extract" API stuff from new DLLs??
extracting API stuff:
for the DLLS I write myself, I write the VB Declare statements manually.
For other DLLS, I first check the APIViewer ADd-in in VB6 to see if there is already a declaration that I can copy and paste.
The next step is to check MSDN.
Some third-party DLLs come with VB "include"files or at least some form of documentation (crystal reports...).
Books? I don't know any better source for VB functions than the online docs that come with VB, or, if you prefer written material, their equivalent. You might also want to check out MS press http://mspress.microsoft.com
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
|