Open Form with input parameters

C

Charles Tam

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?
 
A

Allen Browne

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.
 
Top