Results 1 to 2 of 2

Thread: APIs (the basics only)

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Dec 1999
    Posts
    106
    An API is an Application Programming Interface.

    With VB you get an API viewer with VB that allows you to browse the Win32 API & some others.
    The Win32 API exposes loads of standard Windows functions such as getting the Windows directory, reading or writing to the registry etc.

    It's main strengths are that it allows you to use existing code and it also allows you do things you might not be able to do directly in VB.

    It does define functions for registry operations, I think there is an exmaple of this on this site.

    It's not different from VB programming in that you make the call from VB by declaring the function at the top of the module and then making the call somewhere in your code.

    There are plenty of tutorials / examples all over the web which you should have a look at because sooner or later you will need to use it.

  2. #2
    Guest
    Take a look at the API tutorial on this site.
    http://www.vb-world.net/api/winapi/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width