Open Form with input parameters

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to programmatically open a form and be able to pass in a set of
input values so that they could be used to initialise the form. If it
possible? If so, how?
 
You could concatenate the values (and field names?) into some kind of
delimted string, pass it in the OpenArgs of the OpenForm action, and then
parse the values using the Split() function in the Load event of the form.
 
Back
Top