For exmple:
I want to use Labelview(TM) to print a label (Barcode). Table1 contains two
fields: "Barcode", "Filename". Tabel2 contains two fields: "Item", "String".
When I call Labelview to print a label, I write VBA code as
If Lbl Is Nothing Then
Set Lbl = CreateObject("Lblvw.Document")
If logged = False Then
logged = Lbl.LogonWindow
End If
End If
Dim RetV As Boolean
RetV = Lbl.Open(Table2.Fields("string") & Table1.Fields("Filename") )
That's why I want to one form contains TWO Record Sources
Thanks again!