Click here to Skip to main content
15,900,110 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Problem passing/filling/editing data Pin
smjunior091-May-09 16:53
smjunior091-May-09 16:53 
GeneralRe: Problem passing/filling/editing data Pin
smjunior091-May-09 16:56
smjunior091-May-09 16:56 
QuestionGetting content of word embedded in Web Browser control Pin
42ka11-May-09 3:35
42ka11-May-09 3:35 
AnswerRe: Getting content of word embedded in Web Browser control Pin
Dave Kreskowiak1-May-09 3:55
mveDave Kreskowiak1-May-09 3:55 
Questionopening balance in access database using crystal report Pin
adnanbilwani1-May-09 2:30
adnanbilwani1-May-09 2:30 
AnswerRe: opening balance in access database using crystal report Pin
Dave Kreskowiak1-May-09 3:54
mveDave Kreskowiak1-May-09 3:54 
QuestionFor Each Textbox Pin
Samir Ibrahim1-May-09 2:21
Samir Ibrahim1-May-09 2:21 
AnswerRe: For Each Textbox Pin
Henry Minute1-May-09 2:29
Henry Minute1-May-09 2:29 
Try changing:

For Each _TextBox As Object In Me.GroupBox1.Controls
    If TypeOf (_TextBox) Is TextBox Then
        _TextBox.Enabled = False
    End If
Next


to:

For Each _TextBox As Control In Me.GroupBox1.Controls
    If TypeOf (_TextBox) Is TextBox Then
        _TextBox.Enabled = False
    End If
Next


you might even be able to get away with:

For Each _TextBox As Control In Me.GroupBox1.Controls
    If _TextBox Is TextBox Then
        _TextBox.Enabled = False
    End If
Next


Hope this helps. Smile | :)

Henry Minute

Do not read medical books! You could die of a misprint. - Mark Twain
Girl: (staring) "Why do you need an icy cucumber?"
“I want to report a fraud. The government is lying to us all.”

GeneralRe: For Each Textbox Pin
Samir Ibrahim1-May-09 3:07
Samir Ibrahim1-May-09 3:07 
AnswerRe: For Each Textbox Pin
Mycroft Holmes1-May-09 2:33
professionalMycroft Holmes1-May-09 2:33 
GeneralRe: For Each Textbox Pin
Samir Ibrahim1-May-09 3:23
Samir Ibrahim1-May-09 3:23 
NewsRe: For Each Textbox Pin
Samir Ibrahim1-May-09 4:02
Samir Ibrahim1-May-09 4:02 
GeneralRe: For Each Textbox Pin
Mycroft Holmes1-May-09 15:11
professionalMycroft Holmes1-May-09 15:11 
QuestionData Report Pin
Jimnahsh1-May-09 0:19
Jimnahsh1-May-09 0:19 
AnswerRe: Data Report Pin
Dalek Dave1-May-09 1:23
professionalDalek Dave1-May-09 1:23 
AnswerRe: Data Report Pin
Ashfield1-May-09 1:24
Ashfield1-May-09 1:24 
GeneralRe: Data Report Pin
Jimnahsh17-May-09 5:13
Jimnahsh17-May-09 5:13 
GeneralRe: Data Report Pin
Ashfield17-May-09 11:12
Ashfield17-May-09 11:12 
GeneralRe: Data Report Pin
Jimnahsh17-May-09 19:05
Jimnahsh17-May-09 19:05 
GeneralRe: Data Report Pin
Ashfield17-May-09 20:58
Ashfield17-May-09 20:58 
QuestionDrop on a monthcalendar Pin
JR21230-Apr-09 22:36
JR21230-Apr-09 22:36 
AnswerRe: Drop on a monthcalendar Pin
Dalek Dave1-May-09 1:30
professionalDalek Dave1-May-09 1:30 
Questionhow to get parameter from Asp.net web page to windows form Pin
hemrk30-Apr-09 11:30
hemrk30-Apr-09 11:30 
AnswerRe: how to get parameter from Asp.net web page to windows form Pin
Christian Graus30-Apr-09 16:33
protectorChristian Graus30-Apr-09 16:33 
GeneralRe: how to get parameter from Asp.net web page to windows form Pin
hemrk1-May-09 3:24
hemrk1-May-09 3:24 

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.