Discussion:
API Constants
(too old to reply)
Tim^^BOB
2004-02-09 00:53:16 UTC
Permalink
I was wondering if anyone knew a good reference site or program that
can list for me the constants used with API Calls or just al the
constants generally used in VB Programming. For example, when
sndPlaySound is called

(Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA"
(ByVal lpszSoundName As String, ByVal uFlags As Long) As Long)

the uFlags long can be a number of constants like &H1, &H2 ect. how
can I find out which constant values should be used with which calls
and what do they do?

Thanks to all replyers
the Wiz
2004-02-09 02:26:44 UTC
Permalink
Post by Tim^^BOB
I was wondering if anyone knew a good reference site or program that
can list for me the constants used with API Calls or just al the
constants generally used in VB Programming. For example, when
sndPlaySound is called
(Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA"
(ByVal lpszSoundName As String, ByVal uFlags As Long) As Long)
the uFlags long can be a number of constants like &H1, &H2 ect. how
can I find out which constant values should be used with which calls
and what do they do?
Thanks to all replyers
Download the API Guide: http://www.mentalis.org/agnet/apiguide.shtml

More about me: http://www.jecarter.com/
VB3/VB6/C/PowerBasic source code: http://www.jecarter.com/programs.html
Freeware for the Palm with NS Basic source code: http://nsb.jecarter.com
Drivers for Pablo graphics tablet and JamCam cameras: http://home.earthlink.net/~mwbt/
johnecarter ***@at mindspring dot.dot com. Fix the obvious to reply by email.
Tim^^BOB
2004-02-09 23:58:06 UTC
Permalink
Thanks Wiz. Actually I do have that program, which I just realized
fills my need completely. Thanks!

Continue reading on narkive:
Loading...