Utilizing a command button for each record in a continuous form. Want to have command button open another form view complete details for this particular line item based on plat reference. I use this line:
DoCmd.OpenForm "frmComplete", , , Forms!frmComplete!_
frmCtxt_PlatRef.Value = frmResult_STtxt_PlatRef
where frmResult_STtxt_PlatRef is from current form and shows correct information when in 'debug' mode.
frmCtxt_PlatRef common link for each table.
No relationships exist.
Tried reversing order, with and without .value extension.
Form frmCompete opens if just "frmCompelte" in DoCmd.OpenForm operation.
I'm sure this my error. Any ideas anyone.
Thanks so much in advance.
Steven
Don't ask permission - just do it.
DoCmd.OpenForm "frmComplete", , , Forms!frmComplete!_
frmCtxt_PlatRef.Value = frmResult_STtxt_PlatRef
where frmResult_STtxt_PlatRef is from current form and shows correct information when in 'debug' mode.
frmCtxt_PlatRef common link for each table.
No relationships exist.
Tried reversing order, with and without .value extension.
Form frmCompete opens if just "frmCompelte" in DoCmd.OpenForm operation.
I'm sure this my error. Any ideas anyone.
Thanks so much in advance.
Steven
Don't ask permission - just do it.