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

Thread: declare

  1. #1
    Join Date
    Aug 1999
    Location
    Spain
    Posts
    5

    declare

    Hi,
    what's the meaning of the instruction declare
    when it's used before a function declaration?
    In which place is the function implemented?
    thanks.

    MARC.
    -----


  2. #2
    Join Date
    May 1999
    Posts
    3,332

    Re: declare

    Declare is used to allow a VB program to call a function in an external DLL.

    Find details in the online help.

    Use it at the top of a module.
    Be aware that a Declare can be private or public.


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