N
nxqviet
Hi there,
My question is regarding the transfer of data from one form to the
next. On form 1, there is a button that allow you to open form 2 to
view some addtional information about the selected Item.
When form 2 opened. I want some of the information from form 1 to
transfer to the respective fields in form 2. So I used the following
procedures
(1) When click the open form 2 button, the data of interest will be
save to a Public Module
Public1 = Me.field1
Public2 = Me.field2
Public3 = Me.field3
(2)Then do open form action
(3) Then some how load these public values to the opended form2 (I
have problem with this step) ?????
As a side note, because form 2 can be opend and used indipendently,
thats why I did not set Load_ action for form 2 to call out these
public data. This essentually, is a referencing question. I need to
execute many actions on form2, but the code must belong to the button
on form1. How do I achieve this?
Thanks for the help
V-
My question is regarding the transfer of data from one form to the
next. On form 1, there is a button that allow you to open form 2 to
view some addtional information about the selected Item.
When form 2 opened. I want some of the information from form 1 to
transfer to the respective fields in form 2. So I used the following
procedures
(1) When click the open form 2 button, the data of interest will be
save to a Public Module
Public1 = Me.field1
Public2 = Me.field2
Public3 = Me.field3
(2)Then do open form action
(3) Then some how load these public values to the opended form2 (I
have problem with this step) ?????
As a side note, because form 2 can be opend and used indipendently,
thats why I did not set Load_ action for form 2 to call out these
public data. This essentually, is a referencing question. I need to
execute many actions on form2, but the code must belong to the button
on form1. How do I achieve this?
Thanks for the help
V-