Results 1 to 4 of 4

Thread: what is case 8?

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Aug 2005
    Location
    perth
    Posts
    30

    what is case 8?

    VB Code:
    1. If KeyAscii < 48 Or KeyAscii > 57 Then 'sets limits for characters
    2.     Select Case KeyAscii 'sets case for the keys
    3.         Case 8
    4.     Case Else
    5.         KeyAscii = 0
    6.     End Select
    7.     End If

    for this what is case 8??

  2. #2
    PowerPoster lintz's Avatar
    Join Date
    Mar 2003
    Location
    The 19th Hole
    Posts
    2,697

    Re: what is case 8?

    8 = backspace

  3. #3
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: what is case 8?

    BackSpace
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  4. #4
    Frenzied Member Devion's Avatar
    Join Date
    Sep 2000
    Location
    The Netherlands
    Posts
    1,049

    Re: what is case 8?

    Case vbKeyBackspace would be nicer

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