is their any way of checkin whether info on 2 different forms can be checked to see whether or not they actually match.
if any1 can help i'd much appreciate it
thanx people
Bhavik
email add; [email protected]
Printable View
is their any way of checkin whether info on 2 different forms can be checked to see whether or not they actually match.
if any1 can help i'd much appreciate it
thanx people
Bhavik
email add; [email protected]
If you mean to check the properties of controls on another Form you can just specify the owning Form's name before the name of the control whose property you wish to check, such as:
If you mean to check the variables of another form you can either declare the variables as Public or create public access procedures to call from another form where you can send in the variables you need to check.Code:If Form2.Check1.Value = vbChecked Then
Is this what you needed?