Which way i can go to delete a dataline in xbrowse only with the key VK_DELETE? Thanks.
Which way i can go to delete a dataline in xbrowse only with the key VK_DELETE? Thanks.
oBrw:bKeyDown := { |k| If( k == VK_DELETE, oBrw:Delete(), nil ) }
We advise using oBrw:Delete(). This method works for all kinds of datasources.
Thanks!