CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Using Win32 API

  1. #1
    Join Date
    Jan 2001
    Posts
    73

    Using Win32 API

    Hello,
    I am new to VB programming, and finding it very tiresome to declare all these api before i can use them. Some once told me that there are type libraries available for this, does some one know where I can find them and how to use them.

    Thanks,
    N. Raja


  2. #2
    Join Date
    Sep 1999
    Posts
    202

    Re: Using Win32 API

    >very tiresome to declare all these api before i can use them
    It is not - just use 'API Text Viewer' in Visual Studio 6.0 Tools program group.

    Using type libraries can save few bytes in your EXE, but, if you use them, your code won't be self contained, and you won't be able to pass your code modules to other programmers easily. Also, modifying declarations is not easy and can break any previous version of your VB code.


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

Featured