October 19, 200619 yr A question about backing up data got me wondering whether it is possible to identify all the tables in a file and iterate through that list programmatically. The idea is to be able to script something like (using pseudo code) Select All Tables Loop Go To Next[Exit After Last] End Loop Being able to do this would make import/export much cleaner and extensible... Has anyone done something like this? David
October 19, 200619 yr TableNames ( Get( fileName ) ) gives you a list of all the tables in the file which can be iterated over. -jens
Create an account or sign in to comment