asking the impossible?

Acidburn

Registered User.
Local time
Today, 08:46
Joined
Jan 27, 2004
Messages
35
Yo people! I'm wonderin at the minute ive got a splash screen on and after 6 seconds it loads up the switchboard. Is it possible to fade away the splash screen rather than have it there one min and gone the next?
 
thanks for the link! ive downloaded it but cant make heads or toe of it! I was hoping that someone could edit the code for me so i coud shove it in! Been getting my dad up here to read through and we've been deleting adding / modifying the little lines of code so we can implement it into mine but so far no luck! :( But all the same thnxs!
 
Lookat your other post in the Modules and VBA forum.

Please do not post in two forums with almost the same question.

Andy
 
Acidburn

Make sure you drop the complete baswipe module into your modules section.

Then this is what I use in my forms close event...

Dim lngIncrement As Long
Dim lngOpt As Long

lngOpt = 5

If lngOpt >= 0 Then
lngIncrement = 100
Call WipeEffect(Me, lngOpt, lngIncrement)
End If

If you want a different effect change the value of lngOpt.

Candice has used the option buttons to show the different effect that can be done. You don't need the option boxes. Just hard code the close effect as done above. If you use 'lngOpt = 1' then the form will close from the bottom up ect..

HTH

Tom
 

Users who are viewing this thread

Back
Top Bottom