|
-
Jun 11th, 2002, 04:10 AM
#1
Thread Starter
Lively Member
-
Jun 11th, 2002, 04:34 AM
#2
Hyperactive Member
This page explains it all.
See ya later,
-=XQ=-
"Reality is merely an illusion, albeit a very persistent one. "
- Albert Einstein (1879-1955)
This is the coolest site ever!!!
-
Jun 11th, 2002, 04:47 AM
#3
Member
You need to write File association programme in Windows API
or just you can simply change file associations manually
open windows explorer
Tools menu --> folder options --> File types --> change
select file type and change associated programme to your programme
Kiran
-
Jun 11th, 2002, 05:45 AM
#4
Theres also a command that does it from command line.
assoc
-
Jun 11th, 2002, 05:45 AM
#5
Thread Starter
Lively Member
Thanks guys! It really helped a lot!
-
Jun 11th, 2002, 06:44 AM
#6
Thread Starter
Lively Member
-I have also made a playlist to the player. But I am only able to add one file at a time... This takes very long time when you have got 500+ files!
-Does anyone know how to browse/open an entire directory in a playlist, and/or how to browse/add all the files at once?!
-
Jun 11th, 2002, 12:45 PM
#7
Hyperactive Member
Here is a way to do it with the Common Control:
Code:
Private Sub Form_Load()
Dim strX() As String
Dim intX As Integer
With CommonDialog1
.Flags = cdlOFNAllowMultiselect
.Filter = "All Files (*.*) | *.*"
.ShowOpen
strX = Split(.FileName, " ")
'1st element of strX is the path and the others are the filenames
For intX = (LBound(strX) + 1) To UBound(strX)
Debug.Print strX(LBound(strX)) & strX(intX) 'prints file paths to debug window
Next
End With
End Sub
See ya later,
-=XQ=-
"Reality is merely an illusion, albeit a very persistent one. "
- Albert Einstein (1879-1955)
This is the coolest site ever!!!
-
Jun 12th, 2002, 03:29 AM
#8
Thread Starter
Lively Member
Thanks, mate!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|