Where are these tables coming from? Access VBA -


i have created procedure stores names of tables in external database inside array. reason that, ultimately, using reference point determining tables need relinked.

the code below returns total of 13 tables:

for each tb in db.tabledefs      if left(tb.name, 4) <> "msys"         'store these accepted table names in array         astrtablenames(intarryposition) = tb.name         intarryposition = intarryposition + 1     end if  next tb 

and stores names in array. here list of results, when print array:

1: dispensestaging 2: dispensesummary_all 3: drugbrand 4: ndc 5: programs 6: statecodes 7: storeinfo 8: tblcompany 9: tblgetprogramdispense 10: users 11: users1 12: version 13: zipcodes 

here's problem - when open database - has 4 tables. there no more - no references links or anything.

so these tables coming from? mean once there deleted reference still there?

thanks

p.s. procedure i'm using print array:

'procedure print contents of string array  public sub printarraycontents(arrystrg() string)      dim integer      = lbound(arrystrg) ubound(arrystrg)         debug.print & ": "; arrystrg(i)     next  end sub 

these hidden tables.

you can display them in access 2007 going navigation pane, right-click on all access objects , select navigation options.

that open dialog show hidden objects.


Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -