Click here to Skip to main content
15,908,173 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Parse XmlDataDocument Pin
Dave Kreskowiak1-Aug-05 7:49
mveDave Kreskowiak1-Aug-05 7:49 
GeneralRe: Parse XmlDataDocument Pin
rushing1-Aug-05 21:02
rushing1-Aug-05 21:02 
GeneralRe: Parse XmlDataDocument Pin
Dave Kreskowiak2-Aug-05 3:01
mveDave Kreskowiak2-Aug-05 3:01 
GeneralDatagrid/FlexGrid Pin
manish_sapkal31-Jul-05 22:52
manish_sapkal31-Jul-05 22:52 
QuestionHow to run outer application in vb.net? Pin
rushing31-Jul-05 22:27
rushing31-Jul-05 22:27 
AnswerRe: How to run outer application in vb.net? Pin
rwestgraham1-Aug-05 7:10
rwestgraham1-Aug-05 7:10 
GeneralNEED HELP FROM A PRO Pin
erikkl200031-Jul-05 18:40
erikkl200031-Jul-05 18:40 
GeneralRe: NEED HELP FROM A PRO Pin
Christian Graus31-Jul-05 19:50
protectorChristian Graus31-Jul-05 19:50 
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'
hdnProductID.Value = Request.QueryString("IDProduct")
hdnIDA_TapCor.Value = Request.QueryString("IDA_TapCor")
hdnIDA_Remote.Value = Request.QueryString("IDA_Remote")
'
ddlClothTapeColors.Visible = False
ddlBlindRemote.Visible = False

If Page.IsPostBack Then
If ddlClothTapeColors.Visible = True Then
ddlBlindRemote.Visible = False
Else
ddlBlindRemote.Visible = True
ddlClothTapeColors.Visible = False
End If
End If
End Sub

For starters ->

If ddlClothTapeColors.Visible = True Then - can't happen, you just set it to false

So, ddlBlindRemote will ALWAYS be visible.

I suspect that when something is invisible, it's not rendered, which means your view state is lost as well.



Christian Graus - Microsoft MVP - C++
GeneralUsing VB to access windows registry Pin
icowa31-Jul-05 18:34
icowa31-Jul-05 18:34 
GeneralRe: Using VB to access windows registry Pin
Yulianto.31-Jul-05 19:16
Yulianto.31-Jul-05 19:16 
GeneralRe: Using VB to access windows registry Pin
icowa31-Jul-05 20:22
icowa31-Jul-05 20:22 
GeneralRe: Using VB to access windows registry Pin
Yulianto.31-Jul-05 20:36
Yulianto.31-Jul-05 20:36 
GeneralRe: Using VB to access windows registry Pin
icowa31-Jul-05 21:08
icowa31-Jul-05 21:08 
GeneralRe: Using VB to access windows registry Pin
icowa1-Aug-05 16:14
icowa1-Aug-05 16:14 
GeneralRe: Using VB to access windows registry Pin
Yulianto.1-Aug-05 16:18
Yulianto.1-Aug-05 16:18 
GeneralRe: Using VB to access windows registry Pin
icowa1-Aug-05 16:21
icowa1-Aug-05 16:21 
GeneralRe: Using VB to access windows registry Pin
Yulianto.1-Aug-05 16:25
Yulianto.1-Aug-05 16:25 
GeneralHelp on Listbox Pin
Anonymous31-Jul-05 17:34
Anonymous31-Jul-05 17:34 
GeneralRe: Help on Listbox Pin
Yulianto.31-Jul-05 19:08
Yulianto.31-Jul-05 19:08 
GeneralRe: Help on Listbox Pin
Anonymous31-Jul-05 22:04
Anonymous31-Jul-05 22:04 
GeneralRe: Help on Listbox Pin
Yulianto.31-Jul-05 22:22
Yulianto.31-Jul-05 22:22 
GeneralRe: Help on Listbox Pin
Dave Kreskowiak1-Aug-05 7:46
mveDave Kreskowiak1-Aug-05 7:46 
Generalserver/client Pin
dap_qk31-Jul-05 14:46
dap_qk31-Jul-05 14:46 
GeneralRe: server/client Pin
Dave Kreskowiak1-Aug-05 7:33
mveDave Kreskowiak1-Aug-05 7:33 
GeneralCombo Box showing through my calendar Pin
clabrett31-Jul-05 13:21
clabrett31-Jul-05 13:21 

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.