 |
JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1617
|
Re: Probobly Easy Question Here...
Use the FORM's Keypress
' This should change colors based on 1,2, or 3 being pressed
Private Sub Form_KeyPress(KeyAscii As Integer)
Select Case Chr(KeyAscii)
Case "1"
' Number 1 pressed
Shape1.BackColor=&HFFFF&
Case "2"
' Number 2 pressed
Shape2.Backcolor=&HC0C0C0
Case "3"
' Number 3 pressed
Shape3.Backcolor=&HC0C0C0
End Select
End Sub
' You could also just call the option button routine
' Or put in "Option1.Value = True"
|
[Edited by JLRodgers on 22-02-2003 at 09:20 PM GMT]
____________________________
Everywhere's Local (classifieds, job postings, & more for everycity in the world - user entered)
|
|
23-02-2003 at 03:19 AM |
|
|
JLRodgers Level: Moderator
 Registered: 04-04-2002 Posts: 1617
|
Re: Probobly Easy Question Here...
Right now, nothing, well other than writing little programs to help others (both here, and for gaming MODs).
Can't find a VB job since I don't have a Masters in programming, or a Bachleors in Engineering or a CPA degree.
____________________________
Everywhere's Local (classifieds, job postings, & more for everycity in the world - user entered)
|
|
25-02-2003 at 07:56 PM |
|
|
|
|
 |
 |