It is possible that by means of the update and delete button it only affects one text box row. When a record is deleted, only the row where the button is located is affected?
For example, when the edit button of the first row is clicked, the information of this row is loaded in a second screen to edit it.
this code worked for me with a data grid
SET DELETED ON
IF Messagebox( "Are you sure?", 4 ) = 6
SELECT customers4
DELETE
ThisForm.grid2.Refresh
ENDIF
What should I change for the delete button to work with textbox?
For example, when the edit button of the first row is clicked, the information of this row is loaded in a second screen to edit it.
this code worked for me with a data grid
SET DELETED ON
IF Messagebox( "Are you sure?", 4 ) = 6
SELECT customers4
DELETE
ThisForm.grid2.Refresh
ENDIF
What should I change for the delete button to work with textbox?