PDA

Click to See Complete Forum and Search --> : Try to find the vbConstant list.


sanford101
Jan 20th, 2000, 08:41 AM
Anybody know where can I find the vb Constant
list Like adRsnMovenext is 13; adRsnMove is 10; stuff like that.

Here is I am at 8:45, still working in the office, I was wondering does anybody work as
hard as me or as inefficient as me?

ZanM
Jan 20th, 2000, 09:13 AM
try the api viewer in the addins menu in vb or look @ C:\Program Files\Microsoft Visual Studio\Common\Tools\Winapi\Win32api.txt

or maybe in the MSDN help



------------------
SomeTimes Coffee Just Isn't Enough.
Zan Magi

Clunietp
Jan 20th, 2000, 10:41 AM
Use the OBJECT BROWSER. If you ever noticed, the syntax helpers show you what type of parameters procedures are expecting

example: In the messagebox, the second parameter is Buttons as VbMessageBoxStyle = vbOkOnly

just search in the object browser for VbMessageBoxStyle. You will see the name on the left (also called an ENUMERATION) and all the possible values on the right. Click any one of those enumeration MEMBERS (items) and at the bottom, you will see a description and a value.

HTH

Tom