Hi all.
I have the following code that shows all tables in my db in a list box the problem that i have is that it also show the system tables. Is there anyway that i can get it not to show these???
Private Sub Form_Open(Cancel As Integer)
z = ""
For Each A In Application.CurrentDb.TableDefs
z = z & " " & A.Name & ";"
Next
List3.RowSource = z
End Sub
Any surgestions would help.
I have the following code that shows all tables in my db in a list box the problem that i have is that it also show the system tables. Is there anyway that i can get it not to show these???
Private Sub Form_Open(Cancel As Integer)
z = ""
For Each A In Application.CurrentDb.TableDefs
z = z & " " & A.Name & ";"
Next
List3.RowSource = z
End Sub
Any surgestions would help.