gcue Posted May 28, 2008 Posted May 28, 2008 i have three combo boxes. (A B C)trying to get the user to set a path A.B.C"?" = literally a question mark that indicates no value selectedif the user picks "?" on Athen the path should be: B.Cif the user picks "?" on Bthen the path should be C (bc A.?.C is invalid)so i get this all right BUT i cant get a value if the user does not select a question markA.B.Chope im making senseIf GUICtrlRead($a) = "?" Then $npath=(GUICtrlRead($ & "." & GUICtrlRead($c))EndIfIf GUICtrlRead($ = "?" Then $npath=(GUICtrlRead($c))EndIfIf NOT GUICtrlRead($a) = "?" OR GUICtrlRead($ = "?" Then$npath=(GUICtrlRead($a) & "." & GUICtrlRead($ & "." & GUICtrlRead($c))EndIf
DMEE Posted May 28, 2008 Posted May 28, 2008 Do I get it right that the user can only select one questionmark? In that case you can use an elseif statement like this (or a case select statement in a similar way): If GUICtrlRead($a) = "?" Then $npath=(GUICtrlRead($B) & "." & GUICtrlRead($c)) ElseIf GUICtrlRead($B) = "?" Then $npath=(GUICtrlRead($c)) Else $npath=(GUICtrlRead($a) & "." & GUICtrlRead($B) & "." & GUICtrlRead($c)) EndIf If the user can select more than one questionmark, you can use set it up for example this will not work In the beginning there was nothing and then even that exploded - anonymous
zorphnog Posted May 28, 2008 Posted May 28, 2008 If GUICtrlRead($a) <> "?" And GUICtrlRead($B) <> "?" Then $npath=(GUICtrlRead($a) & "." & GUICtrlRead($B) & "." & GUICtrlRead($c)) EndIf
gcue Posted May 28, 2008 Author Posted May 28, 2008 they should be able to use more than one question mark A or B Do I get it right that the user can only select one questionmark? In that case you can use an elseif statement like this (or a case select statement in a similar way): If GUICtrlRead($a) = "?" Then $npath=(GUICtrlRead($B) & "." & GUICtrlRead($c)) ElseIf GUICtrlRead($B) = "?" Then $npath=(GUICtrlRead($c)) Else $npath=(GUICtrlRead($a) & "." & GUICtrlRead($B) & "." & GUICtrlRead($c)) EndIf If the user can select more than one questionmark, you can use set it up for example this will not work
DMEE Posted May 28, 2008 Posted May 28, 2008 The solution of Zorphnog will be nice, but if you like the structure I proposed earlier, you can use a second condition after the first If statement: If GUICtrlRead($a) = "?" Then If GUICtrlRead($B) = "?" Then $npath=(GUICtrlRead($c)) Else $npath=(GUICtrlRead($B) & "." & GUICtrlRead($c)) EndIf ElseIf GUICtrlRead($B) = "?" Then $npath=(GUICtrlRead($c)) Else $npath=(GUICtrlRead($a) & "." & GUICtrlRead($B) & "." & GUICtrlRead($c)) EndIf In the beginning there was nothing and then even that exploded - anonymous
gcue Posted May 28, 2008 Author Posted May 28, 2008 if a question mark is used in your example.. then msgbox(0, "", $npath) doesnt show anything =/ If GUICtrlRead($a) <> "?" And GUICtrlRead($B) <> "?" Then $npath=(GUICtrlRead($a) & "." & GUICtrlRead($B) & "." & GUICtrlRead($c)) EndIf
gcue Posted May 28, 2008 Author Posted May 28, 2008 That works DMEEE!! thanks man The solution of Zorphnog will be nice, but if you like the structure I proposed earlier, you can use a second condition after the first If statement: If GUICtrlRead($a) = "?" Then If GUICtrlRead($B) = "?" Then $npath=(GUICtrlRead($c)) Else $npath=(GUICtrlRead($B) & "." & GUICtrlRead($c)) EndIf ElseIf GUICtrlRead($B) = "?" Then $npath=(GUICtrlRead($c)) Else $npath=(GUICtrlRead($a) & "." & GUICtrlRead($B) & "." & GUICtrlRead($c)) EndIf
ResNullius Posted May 28, 2008 Posted May 28, 2008 Case statements are also ideal for this to help follow the logical flow. Also, it's easier code writing if you do all your GuiControlRead()s at the start of you evaluation and assign them to variables. $aVal = GUICtrlRead($a) $bVal = GUICtrlRead($B) $cVal = GUICtrlRead($c) Select Case $aVal = "?" AND $bVal = "?" AND $cVal = "?" ;Invalid selection, error handling or loop continuation here Case $aVal ="?" AND $bVal ="?" $npath = $cVal Case $aVal = "?" AND $cVal = "?" $npath= $bVal Case $aVal = "?" $npath = $bVal & "." & $cVal Case $aVal <> "?" AND $bVal <> "?" AND $cVal <> "?" $npath= $aVal & "." & $bVal & "." & $cVal EndSelect
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now