Jump to content

Variable Variables


Tasmania
 Share

Recommended Posts

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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...