Supress Access Splash Screen in Access 2000 
Author Message
 Supress Access Splash Screen in Access 2000

Hello All,

I'd like to suppress the Access Splash screen. I tried to
replace it as suggested on the MVP website but I get a
error message when I try to close the database.

I'd like to simply suppress the splash screen (provided
that I don't get the same message) and use a form at
startup to display the application data.

Also, if there is a way to slow down the display of the
Access Splash screen I'd appreciate knowing how to do that.

Any help would be appreciated.

Thanks,
Ray



Mon, 12 Jul 2004 02:34:27 GMT  
 Supress Access Splash Screen in Access 2000
Not sure what you mean by supress but I think I can help
you out a little.  To change the time the splash displays
simply alter the timer interval, 1000 = 1 second.  Why
don't you use code like the following in the on timer
event:

DoCmd.Close acForm, Me.Name
DoCmd.OpenForm "FormYouWantToOpen"

Quote:
>-----Original Message-----
>Hello All,

>I'd like to suppress the Access Splash screen. I tried to
>replace it as suggested on the MVP website but I get a
>error message when I try to close the database.

>I'd like to simply suppress the splash screen (provided
>that I don't get the same message) and use a form at
>startup to display the application data.

>Also, if there is a way to slow down the display of the
>Access Splash screen I'd appreciate knowing how to do
that.

>Any help would be appreciated.

>Thanks,
>Ray
>.



Mon, 12 Jul 2004 02:53:51 GMT  
 Supress Access Splash Screen in Access 2000
Thanks Jeff,

When you lauch the Access application, there is a default
Access screen that appears. I don't want to see that
screen when I launch Access. My question is how to
surpress the screen so that it does not appear.

Ray

Quote:
>-----Original Message-----
>Not sure what you mean by supress but I think I can help
>you out a little.  To change the time the splash displays
>simply alter the timer interval, 1000 = 1 second.  Why
>don't you use code like the following in the on timer
>event:

>DoCmd.Close acForm, Me.Name
>DoCmd.OpenForm "FormYouWantToOpen"

>>-----Original Message-----
>>Hello All,

>>I'd like to suppress the Access Splash screen. I tried
to
>>replace it as suggested on the MVP website but I get a
>>error message when I try to close the database.

>>I'd like to simply suppress the splash screen (provided
>>that I don't get the same message) and use a form at
>>startup to display the application data.

>>Also, if there is a way to slow down the display of the
>>Access Splash screen I'd appreciate knowing how to do
>that.

>>Any help would be appreciated.

>>Thanks,
>>Ray
>>.

>.



Mon, 12 Jul 2004 03:09:48 GMT  
 Supress Access Splash Screen in Access 2000
You might try this.

Create a bmp file with the same name as your application
and install it to the same folder.  

When you start your program with access runtime the bmp
file will appear reather than the access splash screen.

I do this with Access 97 but I assume it works with 2000.

(e.g.   My application file is TPartner.mde so I created a
TPartner.bmp using MS Paint.

Quote:
>-----Original Message-----
>Thanks Jeff,

>When you lauch the Access application, there is a default
>Access screen that appears. I don't want to see that
>screen when I launch Access. My question is how to
>surpress the screen so that it does not appear.

>Ray

>>-----Original Message-----
>>Not sure what you mean by supress but I think I can help
>>you out a little.  To change the time the splash
displays
>>simply alter the timer interval, 1000 = 1 second.  Why
>>don't you use code like the following in the on timer
>>event:

>>DoCmd.Close acForm, Me.Name
>>DoCmd.OpenForm "FormYouWantToOpen"

>>>-----Original Message-----
>>>Hello All,

>>>I'd like to suppress the Access Splash screen. I tried
>to
>>>replace it as suggested on the MVP website but I get a
>>>error message when I try to close the database.

>>>I'd like to simply suppress the splash screen (provided
>>>that I don't get the same message) and use a form at
>>>startup to display the application data.

>>>Also, if there is a way to slow down the display of the
>>>Access Splash screen I'd appreciate knowing how to do
>>that.

>>>Any help would be appreciated.

>>>Thanks,
>>>Ray
>>>.

>>.

>.



Mon, 12 Jul 2004 03:28:27 GMT  
 Supress Access Splash Screen in Access 2000
You're right, same way with A2k

Steve


Quote:
> You might try this.

> Create a bmp file with the same name as your application
> and install it to the same folder.

> When you start your program with access runtime the bmp
> file will appear reather than the access splash screen.

> I do this with Access 97 but I assume it works with 2000.

> (e.g.   My application file is TPartner.mde so I created a
> TPartner.bmp using MS Paint.
> >-----Original Message-----
> >Thanks Jeff,

> >When you lauch the Access application, there is a default
> >Access screen that appears. I don't want to see that
> >screen when I launch Access. My question is how to
> >surpress the screen so that it does not appear.

> >Ray

> >>-----Original Message-----
> >>Not sure what you mean by supress but I think I can help
> >>you out a little.  To change the time the splash
> displays
> >>simply alter the timer interval, 1000 = 1 second.  Why
> >>don't you use code like the following in the on timer
> >>event:

> >>DoCmd.Close acForm, Me.Name
> >>DoCmd.OpenForm "FormYouWantToOpen"

> >>>-----Original Message-----
> >>>Hello All,

> >>>I'd like to suppress the Access Splash screen. I tried
> >to
> >>>replace it as suggested on the MVP website but I get a
> >>>error message when I try to close the database.

> >>>I'd like to simply suppress the splash screen (provided
> >>>that I don't get the same message) and use a form at
> >>>startup to display the application data.

> >>>Also, if there is a way to slow down the display of the
> >>>Access Splash screen I'd appreciate knowing how to do
> >>that.

> >>>Any help would be appreciated.

> >>>Thanks,
> >>>Ray
> >>>.

> >>.

> >.



Mon, 12 Jul 2004 04:14:25 GMT  
 Supress Access Splash Screen in Access 2000
Guys,

I know that creating a .bmp file replace the splash
screen. I wanted to prolong the display of the .bmp file
to allow user to read it.

Ray

Quote:
>-----Original Message-----
>You're right, same way with A2k

>Steve



>> You might try this.

>> Create a bmp file with the same name as your application
>> and install it to the same folder.

>> When you start your program with access runtime the bmp
>> file will appear reather than the access splash screen.

>> I do this with Access 97 but I assume it works with
2000.

>> (e.g.   My application file is TPartner.mde so I
created a
>> TPartner.bmp using MS Paint.
>> >-----Original Message-----
>> >Thanks Jeff,

>> >When you lauch the Access application, there is a
default
>> >Access screen that appears. I don't want to see that
>> >screen when I launch Access. My question is how to
>> >surpress the screen so that it does not appear.

>> >Ray

>> >>-----Original Message-----
>> >>Not sure what you mean by supress but I think I can
help
>> >>you out a little.  To change the time the splash
>> displays
>> >>simply alter the timer interval, 1000 = 1 second.  Why
>> >>don't you use code like the following in the on timer
>> >>event:

>> >>DoCmd.Close acForm, Me.Name
>> >>DoCmd.OpenForm "FormYouWantToOpen"

>> >>>-----Original Message-----
>> >>>Hello All,

>> >>>I'd like to suppress the Access Splash screen. I
tried
>> >to
>> >>>replace it as suggested on the MVP website but I get
a
>> >>>error message when I try to close the database.

>> >>>I'd like to simply suppress the splash screen
(provided
>> >>>that I don't get the same message) and use a form at
>> >>>startup to display the application data.

>> >>>Also, if there is a way to slow down the display of
the
>> >>>Access Splash screen I'd appreciate knowing how to do
>> >>that.

>> >>>Any help would be appreciated.

>> >>>Thanks,
>> >>>Ray
>> >>>.

>> >>.

>> >.

>.



Mon, 12 Jul 2004 04:54:12 GMT  
 Supress Access Splash Screen in Access 2000
Keep the bmp in the directory with the mdb, that will kill the MsAccess
screen, then create a form and insert your bmp on that form.  Set a Timer
value of 5000 (5 sec) in the On Timer call your menu form and close the
splash form.  Set the splash form as the startup form.

Steve


Quote:
> Guys,

> I know that creating a .bmp file replace the splash
> screen. I wanted to prolong the display of the .bmp file
> to allow user to read it.

> Ray

> >-----Original Message-----
> >You're right, same way with A2k

> >Steve



> >> You might try this.

> >> Create a bmp file with the same name as your application
> >> and install it to the same folder.

> >> When you start your program with access runtime the bmp
> >> file will appear reather than the access splash screen.

> >> I do this with Access 97 but I assume it works with
> 2000.

> >> (e.g.   My application file is TPartner.mde so I
> created a
> >> TPartner.bmp using MS Paint.
> >> >-----Original Message-----
> >> >Thanks Jeff,

> >> >When you lauch the Access application, there is a
> default
> >> >Access screen that appears. I don't want to see that
> >> >screen when I launch Access. My question is how to
> >> >surpress the screen so that it does not appear.

> >> >Ray

> >> >>-----Original Message-----
> >> >>Not sure what you mean by supress but I think I can
> help
> >> >>you out a little.  To change the time the splash
> >> displays
> >> >>simply alter the timer interval, 1000 = 1 second.  Why
> >> >>don't you use code like the following in the on timer
> >> >>event:

> >> >>DoCmd.Close acForm, Me.Name
> >> >>DoCmd.OpenForm "FormYouWantToOpen"

> >> >>>-----Original Message-----
> >> >>>Hello All,

> >> >>>I'd like to suppress the Access Splash screen. I
> tried
> >> >to
> >> >>>replace it as suggested on the MVP website but I get
> a
> >> >>>error message when I try to close the database.

> >> >>>I'd like to simply suppress the splash screen
> (provided
> >> >>>that I don't get the same message) and use a form at
> >> >>>startup to display the application data.

> >> >>>Also, if there is a way to slow down the display of
> the
> >> >>>Access Splash screen I'd appreciate knowing how to do
> >> >>that.

> >> >>>Any help would be appreciated.

> >> >>>Thanks,
> >> >>>Ray
> >> >>>.

> >> >>.

> >> >.

> >.



Mon, 12 Jul 2004 05:13:31 GMT  
 
 [ 7 post ] 

 Relevant Pages 

1. InternetExplorer object - supress splash screen!

2. InternetExplorer object - supress splash screen

3. Access 2K splash screen

4. Splash screens in Access '97

5. Cannot access disposed object named (Splash Screen related problem)

6. read excel file in access 2000 lire fichier excel dans access 2000

7. Importing an Access 2000 table into another Access 2000 database with VB Code

8. Accessing reports in Access 2000 with SQL 2000 as Backend

9. Distributing VB/Access 2000 Apps to non Access 2000 owners

10. Access 97 upgrade to Access 2000 or Access 2002

11. Access 2000 database screen lookalike

12. Access 2000 database screen lookalike

 

 
Powered by phpBB® Forum Software