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
|