PC Review


Reply
Thread Tools Rate Thread

Displaying Reports dynamically

 
 
Majic
Guest
Posts: n/a
 
      8th Feb 2008
I have 4 different reports that I would like to diplay using
projector. Each report has 2-3 pages within the report. Could I have
once it is open, it will dynamically flip pages on a timer?
I wanted to diplay the report and automatically to change from page 1
to page 2 and etc.

How do I do that? Can I do it as macro? How?

Please help

Thank you

majic
 
Reply With Quote
 
 
 
 
Jeff Boyce
Guest
Posts: n/a
 
      8th Feb 2008
I'm not aware of a "Timer" event for reports, but that may be available in
the latest version of Access.

A possible "brute force" method would be to export the reports' pages to
Word documents, then incorporate one page per "slide" in a PowerPoint file.

Good luck!

Regards

Jeff Boyce
Microsoft Office/Access MVP

"Majic" <(E-Mail Removed)> wrote in message
news:8af628cf-804f-4cc9-86b1-(E-Mail Removed)...
>I have 4 different reports that I would like to diplay using
> projector. Each report has 2-3 pages within the report. Could I have
> once it is open, it will dynamically flip pages on a timer?
> I wanted to diplay the report and automatically to change from page 1
> to page 2 and etc.
>
> How do I do that? Can I do it as macro? How?
>
> Please help
>
> Thank you
>
> majic



 
Reply With Quote
 
 
 
 
derek@westcreekltd.com
Guest
Posts: n/a
 
      9th Feb 2008
On Feb 8, 7:27 am, Majic <fazamoin...@aol.com> wrote:
> I have 4 different reports that I would like to diplay using
> projector. Each report has 2-3 pages within the report. Could I have
> once it is open, it will dynamically flip pages on a timer?
> I wanted to diplay the report and automatically to change from page 1
> to page 2 and etc.
>
> How do I do that? Can I do it as macro? How?
>
> Please help
>
> Thank you
>
> majic


Hi

I would go with the power point as well.

however there is timer capability in VBA the follwing is a
splash screen that displays for a few seconds then opens a main screen

I suspect that it would be pretty messy.

Private Sub Form_Load()
'TimerInterval = 0

If CheckLinks() = False Then
' Try to relink the tables; if it fails, shut down Developer
Solutions.
If RelinkTables() = False Then
DoCmd.Close acForm, "BlockList"
CloseCurrentDatabase
End If
End If
TimerInterval = 1000

End Sub



Private Sub Form_Timer()
Dim stDocName As String
Dim stLinkCriteria As String
DoCmd.Close
stDocName = "BlockList"
DoCmd.OpenForm stDocName, , , stLinkCriteria
End Sub


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Inserting Controls Dynamically - with Validators Also Added Dynamically Jeffrey Todd Microsoft ASP .NET 1 2nd Jun 2005 05:33 PM
Load User Control Dynamically, Cast object dynamically =?Utf-8?B?UmV6YSBOYWJp?= Microsoft ASP .NET 1 5th Mar 2005 01:04 AM
Load User Control Dynamically, Cast object dynamically =?Utf-8?B?UmV6YSBOYWJp?= Microsoft ASP .NET 1 4th Mar 2005 08:57 PM
How to create filesystemwatcher & timer objects dynamically, and make sure they can keep working themselves at the same time, and give some jobs to their event dynamically? Parco Microsoft Dot NET Framework 0 5th Oct 2004 05:04 PM
Displaying Microsoft Access Reports (active reports) via ASP.NET Brian Barnes Microsoft ASP .NET 1 18th Feb 2004 06:59 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:27 PM.