Results 1 to 2 of 2

Thread: Start Menu Help

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Nov 1999
    Posts
    64

    Post

    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


  2. #2

    Post

    '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
  •  



Click Here to Expand Forum to Full Width