Click here to Skip to main content
15,895,142 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Display one value in combobox, but use another. Pin
Johan Hakkesteegt8-Sep-09 0:26
Johan Hakkesteegt8-Sep-09 0:26 
GeneralRe: Display one value in combobox, but use another. Pin
Nielvh8-Sep-09 0:37
Nielvh8-Sep-09 0:37 
QuestionThe Remote Server Returned an error :(411) Length Required Pin
dcdhingra6-Sep-09 20:49
dcdhingra6-Sep-09 20:49 
AnswerRe: The Remote Server Returned an error :(411) Length Required Pin
Hurricane30007-Sep-09 11:07
Hurricane30007-Sep-09 11:07 
GeneralRe: The Remote Server Returned an error :(411) Length Required Pin
dcdhingra8-Sep-09 4:17
dcdhingra8-Sep-09 4:17 
QuestionMore efficient way to program row visibility in VB Pin
Cardary6-Sep-09 20:35
Cardary6-Sep-09 20:35 
AnswerRe: More efficient way to program row visibility in VB Pin
Christian Graus6-Sep-09 21:35
protectorChristian Graus6-Sep-09 21:35 
AnswerRe: More efficient way to program row visibility in VB Pin
εїзεїзεїз6-Sep-09 22:00
εїзεїзεїз6-Sep-09 22:00 
Their are several ways to do this


1)


Use the Tag Property of the controls let's suppose Put "1" in controls where your case is 1

and put the following code

For Each Control As System.Windows.Forms.Control In Me.Controls
            If TypeOf Control Is TextBox Then
                If Control.Tag = "1" Then
                    Control.Visible = False
                End If
            End If
        Next






2).


You can also use the GroupBox Control and can set its visibility to true and False if your controls are in one order/Sequence rather then doing whole controls



Best Of Regards,
SOFTDEV
Sad like books with torn pages, sad like unfinished stories ...

AnswerRe: More efficient way to program row visibility in VB Pin
N a v a n e e t h6-Sep-09 22:33
N a v a n e e t h6-Sep-09 22:33 
Questiontelephone number word generator Pin
rbjanaki6-Sep-09 11:12
rbjanaki6-Sep-09 11:12 
AnswerRe: telephone number word generator Pin
Henry Minute6-Sep-09 11:39
Henry Minute6-Sep-09 11:39 
GeneralRe: telephone number word generator Pin
rbjanaki6-Sep-09 11:46
rbjanaki6-Sep-09 11:46 
GeneralRe: telephone number word generator Pin
Henry Minute6-Sep-09 12:17
Henry Minute6-Sep-09 12:17 
GeneralRe: telephone number word generator Pin
rbjanaki6-Sep-09 12:24
rbjanaki6-Sep-09 12:24 
GeneralRe: telephone number word generator Pin
Hurricane30006-Sep-09 12:31
Hurricane30006-Sep-09 12:31 
GeneralRe: telephone number word generator Pin
rbjanaki6-Sep-09 12:42
rbjanaki6-Sep-09 12:42 
GeneralRe: telephone number word generator Pin
Henry Minute6-Sep-09 13:36
Henry Minute6-Sep-09 13:36 
GeneralRe: telephone number word generator Pin
rbjanaki6-Sep-09 14:16
rbjanaki6-Sep-09 14:16 
GeneralRe: telephone number word generator Pin
Henry Minute6-Sep-09 14:36
Henry Minute6-Sep-09 14:36 
GeneralRe: telephone number word generator Pin
Luc Pattyn6-Sep-09 12:39
sitebuilderLuc Pattyn6-Sep-09 12:39 
GeneralRe: telephone number word generator Pin
Henry Minute6-Sep-09 12:41
Henry Minute6-Sep-09 12:41 
GeneralRe: telephone number word generator Pin
Luc Pattyn6-Sep-09 12:53
sitebuilderLuc Pattyn6-Sep-09 12:53 
GeneralRe: telephone number word generator Pin
Henry Minute6-Sep-09 12:58
Henry Minute6-Sep-09 12:58 
GeneralRe: telephone number word generator Pin
Luc Pattyn6-Sep-09 13:14
sitebuilderLuc Pattyn6-Sep-09 13:14 
GeneralRe: telephone number word generator Pin
Henry Minute6-Sep-09 13:15
Henry Minute6-Sep-09 13:15 

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.