Subform Problems

GregSmith

Registered User.
Local time
Today, 14:51
Joined
Feb 22, 2002
Messages
126
I have a main form called checkpoint and a subform called network_object.
On the subform is an text box called SourceName.

Here is my code
Forms!CheckPoint!network_object!Me.SourceName = "test"
'Forms!MyMainFormName!MySubformName!MyControl

Only thing is - it never updates the subform.

And idea??
 
Have you tried this :

Code:
Forms!CheckPoint!network_object!SourceName = "test"

Removing the Me from the code.

Andy
 

Users who are viewing this thread

Back
Top Bottom