VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

Searches through the specified folder (through the use of a dialog box) for all .MP3 files and adds

Cyric  (1 Submission)   Files/File Controls/Input/Output   VB 6.0   Unknown Difficulty   Wed 13th June 2001   Mon 8th February 2021

Searches through the specified folder (through the use of a dialog box) for all .MP3 files and adds them to a list box. If the ID3 information

API Declarations



Public Type SHITEMID 'mkid
cb As Long
abID As Byte
End Type

Public Type ITEMIDLIST 'idl
mkid As SHITEMID
End Type

Public Type BROWSEINFO 'bi
hOwner As Long
pidlRoot As Long
pszDisplayName As String
lpszTitle As String
ulFlags As Long
lpfn As Long
lParam As Long
iImage As Long
End Type

Public Declare Function SHGetPathFromIDList Lib "shell32.dll" Alias "SHGetPathFromIDListA" (ByVal pidl As Long, ByVal pszPath As String) As Long
Public Declare Function SHBrowseForFolder Lib "shell32.dll" Alias "SHBrowseForFolderA" (lpBrowseInfo As BROWSEINFO) As Long

Public Const BIF_RETURNONLYFSDIRS = &H1



'GLOBAL VARIABLES USED FOR MAIN APPLICATION
Public FSO As FileSystemObject
Public BI As BROWSEINFO, IDL As ITEMIDLIST, pidl As Long, pos As Integer, spath As String


'Holds the tag info for an MP3 file
Public Type TagInfo
Tag As String * 3
Songname As String * 30
artist As String * 30
album As String * 30
year As String * 4
comment As String * 30
genre As String * 1
End Type


Rate Searches through the specified folder (through the use of a dialog box) for all .MP3 files and adds (1(1 Vote))
Searches through the specified folder (through the use of a dialog box) for all .MP3 files and adds.bas

Searches through the specified folder (through the use of a dialog box) for all .MP3 files and adds Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters