PC SOFT

PROFESSIONAL NEWSGROUPS
WINDEVWEBDEV and WINDEV Mobile

Home → WINDEV 2024 → Saving a query ?
Saving a query ?
Started by John Marrone, Aug., 09 2004 3:47 PM - No answer
Posted on August, 09 2004 - 3:47 PM
Hi
I have a query being used by a table. When I select a record and then right click I then bring up a popup
menu. I click on a menu item. Now I assume that the current selected record is the record being affected when I
program these commands.
qryEntries.InRace = False
HModify(qryEntries)
ScreenToFile(SelectRace,Entries)
HCancelDeclaration(qryEntries)
HExecuteQuery(qryEntries, hQueryDefault,Cur:RaceID)
TableDisplay(tblEntries)
In my query I have InRace must equal true.
When I make this change I need to update the actual datafile "Entries". Can someone tell me what I am doing wrong.
The record should now be gone if my datafile got updated. But the record is still in my table after I run the query?
Thanks
John Marrone