Results 1 to 2 of 2

Thread: shaped buttons

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Oct 1999
    Location
    England
    Posts
    982

    Lightbulb

    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.


    Things I do when I am bored: DotNetable

  2. #2
    Addicted Member KrishnaSantosh's Avatar
    Join Date
    Feb 2001
    Location
    Coimbatore
    Posts
    210
    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
  •  



Click Here to Expand Forum to Full Width