I have comboBoxes on a form that has a defaultvalue set as =GetINFO(string,date,number)
Once the default value is changed on the form by the user, it is written to a table.
I wanted a quick routine to check what the default value was, however when I use:
Dim strVAL as string
strVAL = Form.ComboBox.DefaultValue
I get, =GetINFO(string,date,number)
instead of the value the function call provides.
Is there a way to get and run the function attached to the control's defaultvalue?
Once the default value is changed on the form by the user, it is written to a table.
I wanted a quick routine to check what the default value was, however when I use:
Dim strVAL as string
strVAL = Form.ComboBox.DefaultValue
I get, =GetINFO(string,date,number)
instead of the value the function call provides.
Is there a way to get and run the function attached to the control's defaultvalue?