|
-
Jan 21st, 2000, 04:52 AM
#1
Thread Starter
Lively Member
How would one go about making the Start Menu Pop-up? And, is there a way for your program to know when it's poped up or not? any info will help. thank you
------------------
Charlie Jacquez
16 Year Old Software Developer
Email: [email protected]
Web: CJWARES Online
AIM: CJWARES, SlimmShadee2000, or BIOSzapper
ICQ: 58493454
I program: Basic, Visual Basic, HTML, and TI-Calculators
My System Specs: Click here
-
Jan 21st, 2000, 05:49 AM
#2
New Member
'Decs:
Public Declare Sub keybd_event Lib "user32" (ByVal bvk As Byte, ByVal bscan As Byte, ByVal dwflags As Long, ByVal dwextrainfo As Long)
Public Const KEYEVENTF_KEYUP = &H2
Public Const MENU_KEYCODE = 91
'Code:
keybd_event MENU_KEYCODE, 0, 0, 0
keybd_event MENU_KEYCODE, 0, KEYEVENTF_KEYUP, 0
'--------
'Nyon
'www.quakestuff.co.uk
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|