str Value question
-
In vb.net 2005. I am wanting to say at form load that if a global value (strName) has not been used (i.e. has not been entered into), then load another form, how can i do this, i have tried: If strName.length < 1 strName.Empty Help!!!
-
In vb.net 2005. I am wanting to say at form load that if a global value (strName) has not been used (i.e. has not been entered into), then load another form, how can i do this, i have tried: If strName.length < 1 strName.Empty Help!!!
-
In vb.net 2005. I am wanting to say at form load that if a global value (strName) has not been used (i.e. has not been entered into), then load another form, how can i do this, i have tried: If strName.length < 1 strName.Empty Help!!!
-
I want to clarify what you are asking? Are you trying too check the value of a textbox control to see if it is null and if so then opening a different form? Or are checking to see if a control has been createded? Jhoga
Im trying something like this: If strName.IsNullOrEmpty Then frmTeachBasics.Show() The strName is a global, but it is coming up with an error asking me to replace "strName with String"
-
Im trying something like this: If strName.IsNullOrEmpty Then frmTeachBasics.Show() The strName is a global, but it is coming up with an error asking me to replace "strName with String"