Library tutorials & articles
API Programming Series #1
- Foreword
- So what's API
- Where does the API reside?
- How can we access API functions from VB?
- Why use the API when I can achieve most of the thi
- What are the cons?
- Conclusion
How can we access API functions from VB?
Since these functions are encapsulated within external DLLs they are not available
in VB by default. Before invoking (i.e. using) them, we must declare them. Usually
this is done in the General | Declarations part of the module in which they
are to be used.
One important thing should be remembered while declaring API functions within
a form module. VB does not allow public Declare statements within form modules.
So the Declare statements should be explicitly specified as Private since all
object module members are considered Public by default. But this makes them
invisible outside the module in which they are defined. So the functions should
be declared in every module that needs to use them.
Declaring them in a separate .BAS module where they can be declared as Public
and are therefore accessible to all the modules eliminates this duplication.
This also permits easier maintenance.
Note: We will see how to declare and use API functions in the
second article of this series.
Related articles
Related discussion
-
ditto
by zapthedingbat (2 replies)
-
Mousewheel
by jonh (3 replies)
-
True multithread VB source code controls
by James Crowley (3 replies)
-
Rely
by Yujvendra Verma (4 replies)
-
True multithread VB source code controls
by James Crowley (3 replies)
plz help me 4r api.gv some books on api![Sad [:(]](/emoticons/emotion-6.gif)
The article is really valuble.It will give good exposure to Windows API
hey ther, can anyone gve me an idea how to retrive the system's information in vb so that i could create a system dedicated application. or any other method
Look in the registry:
For WinNT/2K (I assume this works on XP too...)
You'll need to find a way to read this key as VB can't do it on it's own. You can use API Routines Reg*. Check msdn (http://msdn.microsoft.com/library) for more details.
Hey
just wondering if anyone has an advice for a problem tha i'm trying to solve:
I need to make an API call from VBA within Excel to get information about the compnany that the machine is registered to. I was wondering if anyones knows the DLL file it's in or any other way of getting this informmation into Excel
Really appreciate anyone's input.
Thanks RT
this looks quite promising, at least if he keeps goin' and wud be nice if he exposes some calls... for guys who want to expand their "Database"