Results 1 to 2 of 2

Thread: Using Common Dialog

  1. #1
    Stiletto
    Guest

    Using Common Dialog

    Hey,
    I got a simple q:
    How can i use a common dialog to open a mp3 file and add em to a listbox?
    tnx

  2. #2
    Megatron
    Guest
    VB Code:
    1. With CommonDialog1
    2.     .CancelError = True
    3.     .FileName = ""
    4.     .Filter = "MP3 Files (*.mp3)|*.mp3"
    5.     .ShowOpen
    6.     If Err <> 32755 Then list1.AddItem .FileName
    7. End With

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