|
-
Mar 17th, 2001, 06:50 PM
#1
Thread Starter
Fanatic Member
I asked this question on the General VB forum with some very interesting suggestions,
see the tread http://forums.vb-world.net/showthrea...6&goto=newpost
I thought I would ask the same question here incase anyone had any extra ideas.
Is it possible to create shaped buttons as active X controls.
-
Mar 19th, 2001, 01:21 AM
#2
Addicted Member
Apart from creating shaped controls you can also
include sounds to make it more appealing and
nteractive
Here is the API that plays sound
'''''
Public Declare Function sndPlaySound Lib "winmm.dll" Alias "sndPlaySoundA" (ByVal lpszSoundName As String, ByVal uFlags As Long) As Long
Public Const SND_ASYNC = &H1 ' play asynchronously
Public Const SND_LOOP = &H8 ' loop the sound until next sndPlaySound
'''''''
Usage :: sndPlaySound "c:\AppStart.wav",&H1
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|