Click here to Skip to main content
15,902,907 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: help Pin
Paul Conrad16-Sep-07 10:00
professionalPaul Conrad16-Sep-07 10:00 
AnswerRe: help Pin
Christian Graus16-Sep-07 9:02
protectorChristian Graus16-Sep-07 9:02 
AnswerRe: help Pin
Naji El Kotob16-Sep-07 10:44
Naji El Kotob16-Sep-07 10:44 
GeneralRe: help Pin
twsted f817-Sep-07 23:52
twsted f817-Sep-07 23:52 
AnswerRe: help Pin
rohitsrivastava16-Sep-07 23:38
rohitsrivastava16-Sep-07 23:38 
Questionvalidating text boxes Pin
twsted f816-Sep-07 8:23
twsted f816-Sep-07 8:23 
AnswerRe: validating text boxes Pin
Paul Conrad16-Sep-07 8:30
professionalPaul Conrad16-Sep-07 8:30 
AnswerRe: validating text boxes Pin
Santosh metal16-Sep-07 17:21
Santosh metal16-Sep-07 17:21 
You cannot compare the type of control with TextBox Class. The control has to be compared with the type of TextBox.
Possibly the the code snippet will resolve your issue

For Each ctrl As Control In Me.Controls
If ctrl.GetType() Is GetType(TextBox) Then
If ctrl.Text="" Then
MessageBox.Show("Message",MessageBoxButtons.OK,MessageBoxIcon.Exclamation)
ctrl.Focus()
End IF
End If
Next

Santosh Metal
Questionneed halp for bad record length error [modified] Pin
bapu288916-Sep-07 8:08
bapu288916-Sep-07 8:08 
AnswerRe: need halp for bad record length error Pin
Paul Conrad16-Sep-07 8:17
professionalPaul Conrad16-Sep-07 8:17 
GeneralRe: need halp for bad record length error Pin
bapu288916-Sep-07 8:33
bapu288916-Sep-07 8:33 
AnswerRe: need halp for bad record length error Pin
Christian Graus16-Sep-07 9:01
protectorChristian Graus16-Sep-07 9:01 
GeneralRe: need halp for bad record length error Pin
Paul Conrad16-Sep-07 17:41
professionalPaul Conrad16-Sep-07 17:41 
AnswerRe: need halp for bad record length error Pin
bapu288917-Sep-07 7:57
bapu288917-Sep-07 7:57 
QuestionBeigners Pin
Mahendhirans16-Sep-07 5:58
Mahendhirans16-Sep-07 5:58 
AnswerRe: Beigners Pin
Christian Graus16-Sep-07 6:11
protectorChristian Graus16-Sep-07 6:11 
AnswerRe: Beigners Pin
Paul Conrad16-Sep-07 6:47
professionalPaul Conrad16-Sep-07 6:47 
AnswerRe: Beigners Pin
Naji El Kotob16-Sep-07 10:49
Naji El Kotob16-Sep-07 10:49 
QuestionNewBee needs help converting text file to wav file in vb6. Pin
Robert from Florida16-Sep-07 5:20
Robert from Florida16-Sep-07 5:20 
AnswerRe: NewBee needs help converting text file to wav file in vb6. Pin
Christian Graus16-Sep-07 5:38
protectorChristian Graus16-Sep-07 5:38 
GeneralRe: NewBee needs help converting text file to wav file in vb6. Pin
Robert from Florida16-Sep-07 5:59
Robert from Florida16-Sep-07 5:59 
GeneralRe: NewBee needs help converting text file to wav file in vb6. Pin
Christian Graus16-Sep-07 6:09
protectorChristian Graus16-Sep-07 6:09 
GeneralRe: NewBee needs help converting text file to wav file in vb6. Pin
Robert from Florida16-Sep-07 6:26
Robert from Florida16-Sep-07 6:26 
GeneralRe: NewBee needs help converting text file to wav file in vb6. Pin
Christian Graus16-Sep-07 6:30
protectorChristian Graus16-Sep-07 6:30 
GeneralRe: NewBee needs help converting text file to wav file in vb6. Pin
Robert from Florida16-Sep-07 6:38
Robert from Florida16-Sep-07 6:38 

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.