G
Guest
I have two questions about replication IDs
1) is it ok to use rep IDs as keys to join tables (i.e. does it choke or
does it take up way too much memory, etc)
2) i want to reset a form's recordsource with VBA. When I use the procedure
below with a replication ID it returns nothing but if I use a text field it
works fine. I am assuming the rep ID number itself is the problem. If so, is
there a way around this?
Please help!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
'shows only those records in the "sample" table with a link_table_id same as
the one on the open record
Private Sub Command122_Click()
Dim strNewRecord As String
strNewRecord = "SELECT * FROM sample " _
& " WHERE link_table_id = '" _
& Me!link_table_id.Value & "'"
Me.RecordSource = strNewRecord
End Sub
1) is it ok to use rep IDs as keys to join tables (i.e. does it choke or
does it take up way too much memory, etc)
2) i want to reset a form's recordsource with VBA. When I use the procedure
below with a replication ID it returns nothing but if I use a text field it
works fine. I am assuming the rep ID number itself is the problem. If so, is
there a way around this?
Please help!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
'shows only those records in the "sample" table with a link_table_id same as
the one on the open record
Private Sub Command122_Click()
Dim strNewRecord As String
strNewRecord = "SELECT * FROM sample " _
& " WHERE link_table_id = '" _
& Me!link_table_id.Value & "'"
Me.RecordSource = strNewRecord
End Sub