|
-
August 19th, 2001, 11:43 AM
#1
delete a record
When I try to delete a record using the following code . . .
private Sub mnuPopDelete_Click()
DataEnvironment1.rscmdDepartments.Delete
End Sub
I get the following error . . .
"Row handle referred to a deleted row or a row marked for deletion."
Thanks for any solutions.
John
-
August 20th, 2001, 07:15 AM
#2
Re: delete a record
Define the connection object and execute an SQL
sSQL = "delete from Table where UniqueKey = YourCriteria"
conn.Execute sSQL
Iouri Boutchkine
[email protected]
-
August 20th, 2001, 03:28 PM
#3
Re: delete a record
Thanks for your help. But could you explain why
DataEnvironment1.rscmdDepartments.Delete
gives the error? Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|