Topic: Delete data & refresh Table

How to delete data from fields of a table to refresh table and its fields?

Re: Delete data & refresh Table

If you feel comfortable with a SQLite editor, then you can try this: https://www.tutorialspoint.com/sqlite/s … _table.htm or you can add a button in your project with this sql statement: SQLExecute('DELETE FROM table_name;')


Otherwise Derek has a solution for you here:
http://myvisualdatabase.com/forum/viewtopic.php?id=7048

You can also use the "search" feature of this forum at the top right. wink

Re: Delete data & refresh Table

Thank you tcoton. Do you like to add a project as example? Before deletion a messagebox appear which confirms deletion

Re: Delete data & refresh Table

Have you tried Derek's example?