nope...let me try to explain this in a better way...
megatron:
I have the declares in place
If I do it your way it's the same.
What I need to do is stop it from playing
when I hit the esc key.
If i do it async it just skips through the nag screen
and flips into the image projector but still finishes
playing the song.
I am just trying to bypass the nag screen if esc is pressed.
I can set the ctlt to a button and have it bypassed on startup like the windows click if you want to see this
screen on startup but I was trying to just use the esc
key to do it.
code in form activate
Call sndPlaySound(ByVal App.Path & "\sitting.wav", SND_ASYNC)
Timer1.Enabled = False
Unload Me
Load frmPicDisplay
frmPicDisplay.Show
'esc key codePrivate Sub Form_KeyUp(KeyCode As Integer, Shift As Integer)
If (KeyCode = 27) Then
Unload Me
End Sub