+ Reply to Thread
Page 1 of 5 123 ... LastLast
Results 1 to 10 of 42

Thread: VB 6.0 :Creating a Media Player ,Video Player ...

  1. #1
    Join Date
    Nov 2008
    Location
    Kosovo.
    Posts
    2,391
    Rep Power
    30

    VB 6.0 :Creating a Media Player ,Video Player ...


    Hello CodeCall

    lol I decided to post a tutorial of How To Create A Music Player , Video Player , Photo Viewer , and all the Files that Windows Media Player Suports ..


    Open a Standard.exe
    Go to COMPONENTS and ADD the Microsoft Common Dialog Control 6.0 and windows Media Player
    Take the Windows Media Player and size it as you want
    the Microsoft Common Dialog 6.0 just put somewhere .
    After You'll need
    - a command button
    - a list Box

    The List Box will be the place for Files that you will add ...
    for the list box the code is
    Code:
    WindowsMediaPlayer1.URL = List1
    The Command Button rename with " ADD File "
    and the code for it
    Code:
    Dim sFile As String
    
     
    With CommonDialog1
        .DialogTitle = "Open Media..."
        .CancelError = False
        .Filter = "All Suported Files"
        .ShowOpen
        If Len(.FileName) = 0 Then
            Exit Sub
        End If
        sFile = .FileName
        
    With List1
          .AddItem sFile
    End With
    End With
    and finaly TEST it ..

    Best Wishes,
    Mendim.
    Mendim's Media Palyer.rar
    Last edited by Jordan; 12-28-2008 at 09:17 AM.

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Location
    Advertising world
    Posts
    Many

     
  3. #2
    Jordan Guest

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    Excellent tutorial! +rep

  4. #3
    Join Date
    Aug 2007
    Location
    Gizeh, Al Jizah, Egypt, Egypt
    Posts
    8,675
    Blog Entries
    12
    Rep Power
    81

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    good tutorial mendim +rep
    do you have any idea how to get the current media playing at windows media player?
    yo homie i heard you like one-line codes so i put a one line code that evals a decrypted one line code that prints "i love one line codes"
    Code:
    eval(base64_decode("cHJpbnQgJ2kgbG92ZSBvbmUtbGluZSBjb2Rlcyc7"));
    www.amrosama.com | the unholy methods of javascript

  5. #4
    Join Date
    Mar 2008
    Posts
    7,145
    Rep Power
    86

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    Excellent tutorial! Amazing job.

  6. #5
    Join Date
    Oct 2008
    Location
    San Diego
    Posts
    629
    Rep Power
    19

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    Nice tutorial, good job mendim

  7. #6
    Join Date
    Sep 2008
    Location
    Kosovo
    Posts
    4,032
    Rep Power
    44

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    nice tutorial mendim. +rep

  8. #7
    Join Date
    Oct 2008
    Location
    Istog, Kosova
    Posts
    4,001
    Blog Entries
    1
    Rep Power
    40

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    +rep u bitch
    Interested in participating in community events?
    Want to harness your programming skill and turn it into absolute prowess?
    Come join our programming events!

  9. #8
    whitey6993's Avatar
    whitey6993 is offline Programming Expert
    Join Date
    Dec 2008
    Posts
    435
    Rep Power
    15

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    Good tutorial and an interesting topic. +rep

  10. #9
    Join Date
    Nov 2008
    Location
    Kosovo.
    Posts
    2,391
    Rep Power
    30

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    Thanks , Bros

  11. #10
    shoaibbi's Avatar
    shoaibbi is offline Newbie
    Join Date
    Jan 2009
    Posts
    15
    Rep Power
    0

    Re: VB 6.0 :Creating a Media Player ,Video Player ...

    THATS gUD ONE MAN
    VIvAcIoUs pAkIsTaNi

+ Reply to Thread
Page 1 of 5 123 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 3 users browsing this thread. (0 members and 3 guests)

Similar Threads

  1. winamp/media player sincronization
    By abcsound in forum General Programming
    Replies: 5
    Last Post: 06-24-2011, 08:23 AM
  2. C# . Net Media Player Help!
    By ahmed in forum C# Programming
    Replies: 4
    Last Post: 06-24-2009, 05:06 PM
  3. Window Media PLayer in C#
    By mario in forum C# Programming
    Replies: 0
    Last Post: 03-30-2009, 06:40 PM
  4. Media Player
    By xxarmoxx in forum Visual Basic Programming
    Replies: 2
    Last Post: 04-07-2007, 11:00 AM
  5. Windows Media Player 11 Issues!
    By TcM in forum Computer Software/OS
    Replies: 17
    Last Post: 03-09-2007, 12:16 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts