|
-
Jul 22nd, 2005, 04:38 AM
#1
Thread Starter
Member
[RESOLVED] Identify cell in msflexgrid to enable saving
I am trying to get the selected cell contents from a msflexgrid into an msaccess tbl. With this code it is added into the correct column, but as a new record.
Private Sub Command1_Click()
Text1.Text = MSFlexGrid1
query = "INSERT INTO Jobs (Progress) VALUES ('" & Text1 & "')"
Set rs = DBCon.Execute(query)
End Sub
How can I identify which record it belongs to, as in order to edit it the focus is in the one cell only.
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
|