|
-
Mar 10th, 2009, 01:15 AM
#1
Thread Starter
Addicted Member
auto update in data report
hello!
im using data report for my vb6 and ms access. my data report is working w/o errors. but the problem is if i changed/update something on my database (database connected to data report). the updates that i made are not seen on my report.for example originally the database has 10 records the 10 records will also be shown on my data report. but if i changed my database and add another or remove record. the report stays 10 records. how do synchronize the database and data report.
thanks...
-
Mar 10th, 2009, 06:05 AM
#2
Frenzied Member
Re: auto update in data report
is there a refresh method?
-
Mar 10th, 2009, 06:31 AM
#3
Re: auto update in data report
-
Mar 10th, 2009, 03:17 PM
#4
Re: auto update in data report
If you're using a DataEnvironment you probably need to close or requery the recordset.
Code:
If Dataenvironment1.rsusers.State = adStateOpen Then
Dataenvironment1.rsusers.Close
End If
DataReport1.Show
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
|