This code allows you to open any mp3 file
This code allows you to open any mp3 file
API Declarations
dim mp3 as string
Rate This code allows you to open any mp3 file
(1(1 Vote))
'add this code to a button
private sub command1_click()
'filters the files to open
cd1.filter (*.Mp3|*.mp3)
'opens the open dialogue
cd1.showopen
'assigns the filename as mp3
mp3=cd1.filename
'assigns the variable to a textbox to open
text1.text=mp3
end sub
This code allows you to open any mp3 file Comments
No comments yet — be the first to post one!
Post a Comment