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.
-----
Printable View
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.
-----
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.