2nd time around Filter / recordsource don't work (1 Viewer)

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 07:32
Joined
May 7, 2009
Messages
19,231
i think there is no need for Filtering or changing Recordsource of
TargetSubform.

Add a dummy Textbox (txtLink) to the Main Form.
On the Current Event of the SwForm (first subform),
set the value of this textbox:

Private sub Form_Current()
Me.Parent!txtLink = Left(Me!Num & "", 2)
End Sub

Now create a Master/Child Linkfields to TargetSubform:

Link Master Fields: [txtLink]
Link Child Fields: [theFieldYouWantToLink]
 

FuzMic

DataBase Tinker
Local time
Today, 07:32
Joined
Sep 13, 2006
Messages
719
Bro & Sis, your ideas give me something to tinker further. Thanks & more hopeful with the light up.
 

GinaWhipp

AWF VIP
Local time
Yesterday, 19:32
Joined
Jun 21, 2011
Messages
5,900
We'll be standing by if you need help...
 

FuzMic

DataBase Tinker
Local time
Today, 07:32
Joined
Sep 13, 2006
Messages
719
GG & others in the forum that keeping track. This is what i found

If i want changes eg filter or record.rowsource, all target forms must be sub forms with the switching form as main.

That's it.
 

Users who are viewing this thread

Top Bottom