Click here to Skip to main content
15,913,408 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Moving Multiple Labels Pin
dynamic14-Jun-03 0:05
dynamic14-Jun-03 0:05 
GeneralRe: Moving Multiple Labels Pin
Jm6k14-Jun-03 7:33
Jm6k14-Jun-03 7:33 
GeneralRe: Moving Multiple Labels Pin
dynamic14-Jun-03 7:45
dynamic14-Jun-03 7:45 
GeneralRe: Moving Multiple Labels Pin
Jm6k14-Jun-03 7:58
Jm6k14-Jun-03 7:58 
GeneralRe: Moving Multiple Labels Pin
14-Jun-03 13:11
suss14-Jun-03 13:11 
GeneralSounds and Music Pin
TGWDNGHN13-Jun-03 10:43
TGWDNGHN13-Jun-03 10:43 
GeneralRe: Sounds and Music Pin
J. Dunlap13-Jun-03 10:47
J. Dunlap13-Jun-03 10:47 
GeneralRe: Sounds and Music Pin
dynamic14-Jun-03 14:26
dynamic14-Jun-03 14:26 
an old example in .net i did for someone a few months ago , might give you a helping hand with the sound

<font color="blue">Private</font> <font color="blue">Declare</font> <font color="blue">Function</font> sndPlaySound <font color="blue">Lib</font> "winmm.dll" <font color="blue">Alias</font> "sndPlaySoundA" _
          (<font color="blue">ByVal</font> lpszSoundName <font color="blue">As String</font>, <font color="blue">ByVal</font> uFlags <font color="blue">As Integer</font>) <font color="blue">As Long</font>
    <font color="blue">Const</font> SND_SYNC <font color="blue">As Integer</font> = &H0
    <font color="blue">Const</font> SND_ASYNC <font color="blue">As Integer</font> = &H1
    <font color="blue">Const</font> SND_NODEFAULT <font color="blue">As Integer</font> = &H2
    <font color="blue">Const</font> SND_LOOP <font color="blue">As Integer</font> = &H8
    <font color="blue">Const</font> SND_NOSTOP <font color="blue">As Integer</font> = &H10
    <font color="blue">Dim</font> SoundName <font color="blue">As String</font>, wFlags <font color="blue">As Integer</font>, x <font color="blue">As String</font>

<font color="blue">Private</font> <font color="blue">Sub</font> Button1_Click(<font color="blue">ByVal</font> sender <font color="blue">As</font> System.Object, <font color="blue">ByVal</font> e <font color="blue">As</font> System.EventArgs) <font color="blue">Handles</font> Button1.Click
        SoundName = "C:\Documents and Settings\Den\My Documents\Visual Studio Projects\WindowsApplication1\beav_rap.wav"
        wFlags = SND_ASYNC <font color="blue">Or</font> SND_NODEFAULT
        x = sndPlaySound(SoundName, wFlags)

    <font color="blue">End</font> <font color="blue">Sub</font>




<font color="blue">Private void</font> ExpectingTwins(<font color="blue">string</font> twins)
    {    
    <font color="blue">switch</font>(twins)
    {
    <font color="blue">Case</font> ("twins on the way"):
        MessageBox.Show("for mr and mrs dynamic","twins on the way");
    <font color="blue">break</font>;
    }
    }



Generalaccess denied Pin
kristina_c13-Jun-03 7:44
kristina_c13-Jun-03 7:44 
Generaldatagrids Pin
kristina_c13-Jun-03 3:29
kristina_c13-Jun-03 3:29 
GeneralRe: datagrids Pin
GrindAZ13-Jun-03 5:38
GrindAZ13-Jun-03 5:38 
GeneralRe: datagrids Pin
kristina_c13-Jun-03 7:43
kristina_c13-Jun-03 7:43 
GeneralRe: datagrids Pin
GrindAZ13-Jun-03 7:49
GrindAZ13-Jun-03 7:49 
GeneralRe: datagrids Pin
kristina_c16-Jun-03 7:45
kristina_c16-Jun-03 7:45 
GeneralRe: datagrids Pin
GrindAZ16-Jun-03 7:50
GrindAZ16-Jun-03 7:50 
GeneralEnumerate Control Properties in .Net Pin
Chubby Arse13-Jun-03 0:31
Chubby Arse13-Jun-03 0:31 
GeneralRe: Enumerate Control Properties in .Net Pin
J. Dunlap13-Jun-03 7:28
J. Dunlap13-Jun-03 7:28 
GeneralPrint on next page In VB.NET Pin
rain117812-Jun-03 17:30
rain117812-Jun-03 17:30 
GeneralRe: Print on next page In VB.NET Pin
code_gopher20-Jun-03 10:12
code_gopher20-Jun-03 10:12 
GeneralSound Question... Pin
GSMe12-Jun-03 16:35
GSMe12-Jun-03 16:35 
GeneralRe: Sound Question... Pin
Jason McBurney13-Jun-03 6:57
Jason McBurney13-Jun-03 6:57 
GeneralOne thing that Trobles me in VB.NET Pin
greg lynch _nj_12-Jun-03 5:29
greg lynch _nj_12-Jun-03 5:29 
GeneralProblem calling DLL Pin
Member 43512711-Jun-03 22:26
Member 43512711-Jun-03 22:26 
GeneralRe: Problem calling DLL Pin
CBoland12-Jun-03 6:11
CBoland12-Jun-03 6:11 
GeneralRe: Problem calling DLL Pin
Nick Parker14-Jun-03 10:57
protectorNick Parker14-Jun-03 10:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.