|
-
Oct 31st, 1999, 04:27 PM
#1
Thread Starter
New Member
Hi,
I'm converting my database applications from DAO to ADO using VB 6.0..
I want to know what is the exact replacement of DAO's LastModified property in ADO...?? If anybody knows, let me know asap...
Thanx in advance,
Manikandan.R
Mailto: [email protected]
-
Nov 2nd, 1999, 02:06 AM
#2
Addicted Member
You need store the bookmark when you have changed record.
For sample:
Dim varBookmark As Variant
' You change record here...
' Store the bookmark of the current record.
varBookmark = rst1.Bookmark
' Go to the record indicated by the stored bookmark.
If IsEmpty(varBookmark) Then
MsgBox "No new record!"
Else
rst1.Bookmark = varBookmark
End If
Best regards.
------------------
smalig
[email protected]
smalig.tripod.com
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
|