Click here to Skip to main content
15,893,190 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionDelete data?????????????? Pin
alek hunter15-Jan-07 4:23
alek hunter15-Jan-07 4:23 
AnswerRe: Delete data?????????????? Pin
Dave Kreskowiak15-Jan-07 5:48
mveDave Kreskowiak15-Jan-07 5:48 
GeneralRe: Delete data?????????????? Pin
alek hunter15-Jan-07 7:28
alek hunter15-Jan-07 7:28 
GeneralRe: Delete data?????????????? Pin
Dave Kreskowiak15-Jan-07 19:24
mveDave Kreskowiak15-Jan-07 19:24 
Questionvisual basic.net Pin
kendo1715-Jan-07 3:40
kendo1715-Jan-07 3:40 
AnswerRe: visual basic.net Pin
MatthysDT15-Jan-07 4:07
MatthysDT15-Jan-07 4:07 
GeneralRe: visual basic.net Pin
kendo1715-Jan-07 5:12
kendo1715-Jan-07 5:12 
GeneralRe: visual basic.net Pin
nlarson1115-Jan-07 5:27
nlarson1115-Jan-07 5:27 
I don't think you need to put any code in any event of the text box. like evilnoodle said, use the control collection

you didn't specify what you wanted done when you found a free seat so the below just finds the first free textbox...

For each oCtrl as me.controls
if typeof (octrl) is textbox then
with ctype(octrl, textbox)
if .text = "free" then
.focus()
exit for
end if
end with
end if
next
AnswerRe: visual basic.net Pin
Dave Kreskowiak15-Jan-07 5:26
mveDave Kreskowiak15-Jan-07 5:26 
Questionload images in list without stopping execution Pin
Eric Georgiades15-Jan-07 3:07
Eric Georgiades15-Jan-07 3:07 
AnswerRe: load images in list without stopping execution Pin
Dave Kreskowiak15-Jan-07 5:46
mveDave Kreskowiak15-Jan-07 5:46 
GeneralRe: load images in list without stopping execution Pin
Eric Georgiades15-Jan-07 7:11
Eric Georgiades15-Jan-07 7:11 
AnswerRe: load images in list without stopping execution Pin
nlarson1115-Jan-07 5:48
nlarson1115-Jan-07 5:48 
GeneralRe: load images in list without stopping execution Pin
Eric Georgiades15-Jan-07 7:12
Eric Georgiades15-Jan-07 7:12 
GeneralRe: load images in list without stopping execution Pin
nlarson1115-Jan-07 7:37
nlarson1115-Jan-07 7:37 
QuestionChange the Panel Control to a Button Pin
charchabil0315-Jan-07 2:28
charchabil0315-Jan-07 2:28 
AnswerRe: Change the Panel Control to a Button Pin
Dave Kreskowiak15-Jan-07 5:44
mveDave Kreskowiak15-Jan-07 5:44 
GeneralRe: Change the Panel Control to a Button Pin
charchabil0316-Jan-07 6:32
charchabil0316-Jan-07 6:32 
GeneralRe: Change the Panel Control to a Button Pin
Dave Kreskowiak16-Jan-07 12:14
mveDave Kreskowiak16-Jan-07 12:14 
GeneralRe: Change the Panel Control to a Button Pin
charchabil0328-Jan-07 23:13
charchabil0328-Jan-07 23:13 
QuestionBinding controls to columns with default values Pin
MatthysDT15-Jan-07 0:47
MatthysDT15-Jan-07 0:47 
AnswerRe: Binding controls to columns with default values Pin
Kschuler15-Jan-07 9:39
Kschuler15-Jan-07 9:39 
QuestionGet username and password Pin
Socheat.Net14-Jan-07 23:29
Socheat.Net14-Jan-07 23:29 
AnswerRe: Get username and password Pin
Christian Graus14-Jan-07 23:57
protectorChristian Graus14-Jan-07 23:57 
GeneralRe: Get username and password Pin
Socheat.Net16-Jan-07 0:05
Socheat.Net16-Jan-07 0:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.