22-09-2008, 08:28 PM
I found this snippet of code awhile ago:
This will allow you use tabkey without any problems. It would get added Form_Load().
Code:
' Used so we can actually use the tab key ingame
For i = 0 To Controls.Count - 1
Controls(i).TabStop = False
' Has to be used for controls that don't have tabstop
On Error Resume Next
Next
This will allow you use tabkey without any problems. It would get added Form_Load().