A
Anthony Acri
Need help with this code. When I open it up, it is looking for as Table.
It states it cannot find this user defined function I guess. I am trying to
convert from Acces-97 to Access-2000
After it assign PrintTB as Table, it uses this reference to point to the
table
("Borgo Temporary Address Label Table_BarCode")
Is there another object I can use to do this??
Any help is appreciated
Dim Db As Database, DetRecs As Recordset, HeadRecs As Recordset
Dim PrintTb As Table ????? Get error on this statement
Dim StrHSQL, StrDSQL As String
Dim ProdNumb$
ProdNumb$ = Me.[Production Order Number]
Set Db = CurrentDb()
Set PrintTb = Db.OpenTable("Borgo Temporary Address Label Table_BarCode")
........
' clear the table before refilling it
If PrintTb.EOF = False Then PrintTb.MoveFirst
Do Until PrintTb.EOF
PrintTb.Delete
PrintTb.MoveNext
Loop
It states it cannot find this user defined function I guess. I am trying to
convert from Acces-97 to Access-2000
After it assign PrintTB as Table, it uses this reference to point to the
table
("Borgo Temporary Address Label Table_BarCode")
Is there another object I can use to do this??
Any help is appreciated
Dim Db As Database, DetRecs As Recordset, HeadRecs As Recordset
Dim PrintTb As Table ????? Get error on this statement
Dim StrHSQL, StrDSQL As String
Dim ProdNumb$
ProdNumb$ = Me.[Production Order Number]
Set Db = CurrentDb()
Set PrintTb = Db.OpenTable("Borgo Temporary Address Label Table_BarCode")
........
' clear the table before refilling it
If PrintTb.EOF = False Then PrintTb.MoveFirst
Do Until PrintTb.EOF
PrintTb.Delete
PrintTb.MoveNext
Loop