Tasmania Posted October 10, 2007 Posted October 10, 2007 Below is an example of creating and recalling a variable variable. Thought this might be helpful. Func fcs($itm, $ctrl) If ControlGetFocus("Cost Information") = $itm And Eval("fcsst" & $itm) <> 1 Then GUICtrlSetState($ctrl, $GUI_FOCUS) Assign("fcsst" & $itm, 1, 2) EndIf If ControlGetFocus("Cost Information") <> $itm And Eval("fcsst" & $itm) = 1 Then Assign("fcsst" & $itm, 0, 2) EndIf EndFunc Thanks to evilertoaster for reminding me of Assign.
jvanegmond Posted October 10, 2007 Posted October 10, 2007 Is that supposed to be like the PHP variable variables? github.com/jvanegmond
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