Results 1 to 4 of 4

Thread: Mouse pointer

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Mar 2001
    Location
    Devon, UK
    Posts
    181

    Mouse pointer

    Anyone tell how to change a mouse pointer b4 it was
    MousePointer = MousePointerConstants.vbHourglass

    Now you have to use
    Windows.Forms.Cursors.AppStarting()
    but how??
    Wind and waves resolves all problems.

  2. #2
    Sascha
    Guest
    VB Code:
    1. Cursor.Current = Cursors.WaitCursor

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Mar 2001
    Location
    Devon, UK
    Posts
    181
    Could get that to work - need any specific namespace??
    I got this to work though
    frmMain.ActiveForm.Cursor = System.Windows.Forms.Cursors.WaitCursor
    Wind and waves resolves all problems.

  4. #4
    Hyperactive Member Bananafish's Avatar
    Join Date
    Jan 2001
    Posts
    394
    as Sascha said (it is in the System.Windows.Forms Namespace - a useful one to have Imported)

    VB Code:
    1. System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor

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