..::Zezanje::..

NAS NOVI FORUM ~ OUR NEW FORUM:

http://www.downzilla.byethost3.com/

Join the forum, it's quick and easy

..::Zezanje::..

NAS NOVI FORUM ~ OUR NEW FORUM:

http://www.downzilla.byethost3.com/

..::Zezanje::..

Would you like to react to this message? Create an account in a few clicks or log in to continue.

Zabava za sve uzraste !


    Visual Basic 2008 EE How to make MP3 Player

    Uros-PH
    Uros-PH
    Admin


    Muški
    Broj poruka : 601
    Godina : 28
    Reputacija: :
    Visual Basic 2008 EE How to make MP3 Player Left_bar_bleue100 / 100100 / 100Visual Basic 2008 EE How to make MP3 Player Right_bar_bleue

    Upozorenja :
    Visual Basic 2008 EE How to make MP3 Player Left_bar_bleue0 / 1000 / 100Visual Basic 2008 EE How to make MP3 Player Right_bar_bleue

    Drakne : Unlimited
    Reputacija : 0
    Poeni : 69699
    Datum upisa : 02.11.2008

    Visual Basic 2008 EE How to make MP3 Player Empty Visual Basic 2008 EE How to make MP3 Player

    Počalji od Uros-PH 9/3/2009, 15:55

    Evo ovako:

    Dodati jedan OpenFileDialog

    6 Buttona:
    import
    play
    stop
    pause
    next
    previous

    Open File Dialog 1:

    Kod:
    For Each track As String In OpenFileDialog1.FileNames
                ListBox1.Items.Add(track)
            Next



    Import:

    Kod:
    OpenFileDialog1.ShowDialog()
     

    Play:
    Kod:
    AxWindowsMediaPlayer1.URL = ListBox1.SelectedItem

    Stop :
    Kod:
    AxWindowsMediaPlayer1.Ctlcontrols.stop()


    Pause:
    Kod:
    AxWindowsMediaPlayer1.Ctlcontrols.pause()


    Next:
    Kod:
    AxWindowsMediaPlayer1.Ctlcontrols.next()

    Previous:
    Kod:
    AxWindowsMediaPlayer1.Ctlcontrols.previous()

      Sada je 29/4/2024, 19:19