history
Egyptian Pharaoh
- Local time
- Today, 23:44
- Joined
- Jan 26, 2008
- Messages
- 190
I've posted yesterday to all of you to help me and no reply
my needs are :
I have made a database and :
1-I put in the startup screen flash movie, it was very good and excited before re-installing windows because it becomes bigger than usual and not looking so good inspite of it is working but hide the text beside it.
2-another thing : the same problem with the Page, that it's not working at all after re-installing windows, it gives me message said "Microsoft Office Web Components could not open the database '................................
3-I put in the welcome sreen form this code that shown below but it doesn't work ....
Private Sub Form_Activate()
'When the database is opened display welcome user message.
'When the timer interval is reached, this form closes and opens Switchboard
If Time() < 0.5 Then
[lblMorning].Visible = True
[lblAfternoon].Visible = False
[lblEvening].Visible = False
ElseIf Time() > 0.5 And Time() < 0.75 Then
[lblMorning].Visible = False
[lblAfternoon].Visible = True
[lblEvening].Visible = False
ElseIf Time() > 0.75 Then
[lblMorning].Visible = False
[lblAfternoon].Visible = False
[lblEvening].Visible = True
End If
End Sub
and then the code to close and open another one
Private Sub Form_Timer()
'On the forms timer event close the start-up form
DoCmd.Close acForm, "Welcome screen"
'Open up the main switchboard form when the start-up form closes
DoCmd.OpenForm "Startup"
End Sub
waiting your reply experts
thank you
Omar El-Farouk Ahmed
my needs are :
I have made a database and :
1-I put in the startup screen flash movie, it was very good and excited before re-installing windows because it becomes bigger than usual and not looking so good inspite of it is working but hide the text beside it.
2-another thing : the same problem with the Page, that it's not working at all after re-installing windows, it gives me message said "Microsoft Office Web Components could not open the database '................................
3-I put in the welcome sreen form this code that shown below but it doesn't work ....
Private Sub Form_Activate()
'When the database is opened display welcome user message.
'When the timer interval is reached, this form closes and opens Switchboard
If Time() < 0.5 Then
[lblMorning].Visible = True
[lblAfternoon].Visible = False
[lblEvening].Visible = False
ElseIf Time() > 0.5 And Time() < 0.75 Then
[lblMorning].Visible = False
[lblAfternoon].Visible = True
[lblEvening].Visible = False
ElseIf Time() > 0.75 Then
[lblMorning].Visible = False
[lblAfternoon].Visible = False
[lblEvening].Visible = True
End If
End Sub
and then the code to close and open another one
Private Sub Form_Timer()
'On the forms timer event close the start-up form
DoCmd.Close acForm, "Welcome screen"
'Open up the main switchboard form when the start-up form closes
DoCmd.OpenForm "Startup"
End Sub
waiting your reply experts
thank you
Omar El-Farouk Ahmed