J jyadayada Registered User. Local time Today, 13:24 Joined Sep 6, 2018 Messages 44 Dec 20, 2018 #1 Is it possible to create a clear (and import to) table button that when you click you can either select the table to delete all records from or import into or select all tables?
Is it possible to create a clear (and import to) table button that when you click you can either select the table to delete all records from or import into or select all tables?
pbaldy Wino Moderator Staff member Local time Today, 05:24 Joined Aug 30, 2003 Messages 36,157 Dec 20, 2018 #2 You could certainly use a combo to select a table. "All" wouldn't seem to make sense, in fact wanting to choose a table implies a normalization issue. strSQL = "DELETE * FROM " & Me.ComboName
You could certainly use a combo to select a table. "All" wouldn't seem to make sense, in fact wanting to choose a table implies a normalization issue. strSQL = "DELETE * FROM " & Me.ComboName