|
-
Nov 22nd, 2000, 10:00 PM
#1
Thread Starter
New Member
I'm trying to build a program that reads files I've burned into a cd. To be more specific, the files are Real Video files. I want to make a combo list in which I can select the episode then click on a command button to activate it.
Can someone please help?
P.S. The video files are stored into a different directory of the application itself, so I also need to know how to use the "app.path" function. THANKS !!!
-
Nov 23rd, 2000, 11:13 AM
#2
Thread Starter
New Member
-
Nov 23rd, 2000, 03:22 PM
#3
Hyperactive Member
Code:
Private Sub Command1_Click()
Dim TempStr As String
TempStr = Dir("D:\*.rv")
While TempStr <> ""
Combo1.AddItem TempStr
TempStr = Dir
Wend
End Sub
I'm assuming all files are in the same directory. I don't know the extension to real video files so I made it rv. Change the extenstion to what it really is.
App.path will return the path to the directory where the app is stored.
-
Nov 23rd, 2000, 06:17 PM
#4
Thread Starter
New Member
Thanks! I'll try it out !
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
|