gui, add, text,,String gui, add, edit, vInputString gui, add, text,,Length gui, add, edit, vInputLength gui, add, button, gOk,OK gui, add, edit, w200 r30 vMyEdit gui, show,, The world will end tomorrow return
So a user enters data into two edit controls, and the data is saved as InputString and InputLength. Can you use these as parameters for a function to take?
Ok:
{
MyFunction("InputString","InputLength")
GuiControl,,MyEdit, % output
return
}
MyFunction(Parameter1, Parameter2)
{
Does Stuff
Does Stuff
return output
}




