Hello,
I would like to pass the data contained in 2 fields to another form. I am using the OpenForm command. Is there anyway to do this?
Thanks!
Hello,
I would like to pass the data contained in 2 fields to another form. I am using the OpenForm command. Is there anyway to do this?
Thanks!
Use the OpenArgs argument of the OpenForm command and catch them in the OnLoad event of the next form. OpenArgs is a string argument so just separate the values with a delimiter like the ";" and use the Split() function to pull them apart.