little question here:
1) table deleting
i have a table in which temporary data is stored;
With a command button i want to delete the table (or maybe just the data in it);
2) information from table in textbox
In a form i have a textbox in which the data is mentioned from the table, after clicking the delete table button, i want also the texbox to be empty
First i tried to put the following code behind the onclick event but doesn't seem to work(?)
It should be quite simple (i think?); please advise,
Thanks
1) table deleting
i have a table in which temporary data is stored;
With a command button i want to delete the table (or maybe just the data in it);
2) information from table in textbox
In a form i have a textbox in which the data is mentioned from the table, after clicking the delete table button, i want also the texbox to be empty
First i tried to put the following code behind the onclick event but doesn't seem to work(?)
Code:
DoCmd.DeleteObject acTable, tTable
It should be quite simple (i think?); please advise,
Thanks