Does anyone know weather i can run fmx file
from command line with parameters which go in this form
and to global variables or fields?
ex.
run example.fmx par1 par2 ...
Printable View
Does anyone know weather i can run fmx file
from command line with parameters which go in this form
and to global variables or fields?
ex.
run example.fmx par1 par2 ...
In the object navigator there is a node called parameter.Create a parameter and in when new form instance assign the the appropriate value to the parameter.that way when the form is opened it will assign the value at run time.
so at run time u can do f50run32.exe form_name.fmx un/pw@cs parameter_name = 'your_value'
HTH