o
k
q
u
e
s
t
i
o
n
s
.
c
o
m

FileListBox filtering or using hidden FileListbox and Listbox -

for my first VB project I am working on a simple mp3 player....



now i have everything working great so far, except that the playlist (currently a filelistbox) contains things that look like this:



c:\folder\band - song.mp3

c:\folder\band - song.mp3

c:\folder\band - song.mp3

c:\folder\band - song.mp3



i want it to look like this:



band - song

band - song

band - song



how would i go about doing this?

 

Compare Lists -
I have a listbox and a filelistbox I want to compare the contents of the filelistbox to the listbox and see which files in the listbox aren't in the filelistbox and then add those to a new listbox. What's the best way?


FileListBox not showing hidden/system files -
I have a drivelistbox,dirlistbox and a filelistbox that all work happily togetether. My problem is that the filelistbox does not display hidden or system files but when i call my file search routine, the hidden and system files get returned. Is there a way to dhow hidden files in a fil


FileListBox filtering or using hidden FileListbox and Listbox -
for my first VB project I am working on a simple mp3 player.... now i have everything working great so far, except that the playlist (currently a filelistbox) contains things that look like this: c:\folder\band - song.mp3 c:\folder\band - song.mp3 c:\folder\band -


Scrollbar in FileListBox -
Hi, I have a filelistbox. I need to allow horizontal scrolling in this box....how do i do that?? I already have a listbox which i used windows api to create scrollbar. It worked ok for this listbox but not the filelistbox... Any help is appreciated. Thanks.


listbox control -
Hi I have a VB6 form and inside this form I have a FileListBox and a listbox.When I click into a file in the FileListBox,this file is added to the listbox,but the problem is that I don't want to add the same file twice from the filelistbox to the listbox even though I click it many t


Implementing Drag and Drop -
Can anyone slide me the code to drag and drop from a filelistbox to a listbox? I have a filelistbox (filFiles) and a listbox (listList), and I want to drag files from the filelistbox, copy them to another directory, and display them in the listbox. Can anyone help? thanks a lot.


How to clear a filelistbox while loading the form -
I have a filelistbox in form1, I expect that when the form loads, this filelistbox is cleared, but I didn't find the corresponding clear method for filelistbox. How can I make the filelist empty ?


filelistbox help! -
im about to view in filelistbox for about 40000 files. and when i try the filelistbox.listcount, it produces a negative value.. pls help..


386 FileListBox Problems.. -
hi, I need to know how to get items from a filelistbox into a listbox. i am using VB3.0 16-bit, Im making a program for a 386. thanks for your help.


Compare ListBox and FileListBox contents -
Hello. I want to compare the contents of a ListBox and FileListBox so that any item that's present in the ListBox but NOT present in the FileListBox will be highlighted in the ListBox. So for example if List1 has A, B, C, and D, and File1 has A, C, and D, B will be highlighted in Li


Sorting filelistbox -
Is this possible? All I want is to put the most recently modified file as the top item of a filelistbox. I guess I could just add all the filenames to an array, sort it, and add the elements to a listbox, but that would be too easy....


Multiselect with listbox & filelistbox -
What I am doing is I have the listbox filled with paths for images, when the path is clicked I want the image to be displayed, same thing goes for the filelistbox. Here is what I need help with. I have a listbox and file listobx set for multiselect, how can I tell what item is sel


Two simple question on FileListBox. Yes or No -
1. Can FileListBox sort on file type or attribute? 2. When you refresh a FileListBox, it automatically unselect everything. Is there a way to keep the original selected files after a refresh? I wrote a procedure for this already. Thanks


hiding file extentions in a FileListBox -
lets see if anyone can work this out. I am building a small software delivery app with a FileListBox which is connected to a button on the form to run a Highlighted file in the listbox. The files in the directory are *.bat and *.exe files. What i would like to do is to hide the file


[02/03] How to get the path name droped on filelistbox -
I need the settings to be enabled of the filelistbox so that when I drag some file from OpenFileDialog and drop it on the FileListBox, I can get the file displayed in the list. please can anybody tell me how I can make the settings of both tools and how I can get the path of the file w


What is the use for multiselect option for FileListBox in VB 6.0 -
Hi , I'm using FileListBox in VB 6.0, what is the meaning for 3 options(0-None, 1-Simple, 2-Extended) in multiselect attribute of FileListBox. Can i change this value for this attribute dynamically?. Thanks.


[2005] I need a FileListBox with Icons. -
Hello As you know, the "FileListBox" control only shows the file names, but doesn't show the icons of the files. Is there a listbox that can show both filenames and fileIcons? (I don't want a DialogBox, I need a ListBox). Thank you


copy file to a Filelistbox form explorer ..... Help -
i need the user to be able to drag a file or groop of files from anywhere in windows to a filelistbox in my app. thereby copping or moving the file/files to the dir linked to the filelistbox can someone give me an idea on how to do this..... thanks for any help anyone can offer


multiple select file in filelistbox -
I use filelistbox, I would like to know, It is possible to select more than one file in the filelistbox by press the shift key from keyboard?any idea?


Right click on a filelistbox - popupmenu -
How can I use the typical popupmenu of e.g. windows explorer in my filelistbox? for example: I'd like to rename or delete a file of the filelistbox using the popupmenu of win-explorer and the functions of it. who can help me with this problem? thanks!


clear a filelistbox -
I have a filelistbox that displays files inside a specific folder when the user clicks on the command check.what I want is to clear the content of the filelistbox each time the user clicks on check Private Sub cmdCheck_click() File1.clear 'It didn't work ...'My code File1


FileListbox,DirectoryList, and DriverListbox in VB.NET -
Hi, I am new to VB.NET. I am trying to find whether there're something like DriverListbox, DirListbox and FileListbox in VB.NET? Basically I want to create an application that will allow users to browse in their harddisk for some specific folder, and process all of the files that mee


Drag and Drop from FileListBox -
Can anyone hook me up with the right code to drag and drop from a filelistbox to a listbox? I can't seem to find the right properties to make it work right? Thanks, FLL


How to Fire the DoubleClick Event of a FileListBox in another App -
How can I fire the double click event of a FileListBox that is in another application? I figure I need to use SendMessage but the only message I can find is a notification for when the user actually double clicks an entry. Any help would be greatly appreciated. I could also need h


[CLOSED] Can you select a FileListBox item with right click -
I coded a popup menu in the right click event of my filelistbox. The problem is that the item you click doesn't get selected i na filelistbox with a right click. Any way to fix that?


File attributes & FileListBox -
Hi all, I'm fairly new to VB (not to coding though) and I have a filelistbox that I would like to have a 'header row' that displays the file attributes (i.e. name, type, last modified, last run) of the files listed. In other words, I'm trying to create a form that resemples an ex


FileListBox and stuff -
I've been doing VB for about a week now. I'm a 'master' in QB and I was ready for a new challenge, caus nobody works with DOS anymore. I can do some funny things in VB, the basics. But what I still don't get is the following: I make a DriveListBox, a FileListBox and a DirListBox. But


filelistbox: dam simple problem -
hey guys, im using a fileListBox to get the names of files that exists in a folder.... the screw up is that i dont want it to show the extention... for example.... Run to you.mp3 Crawling.mp3 i only want to show... Run to you Crawling any ideas....??? i dont want to


file1. -
I want to test the content of the filelistbox that is populated with a file. What variable contains the value/s of the filelistbox?


looping in FileListbox -
Q. need help.... in a multiselect filelistbox, how can i display the name of all selected file?


FileListBox Question -
Does anyone know an easy way to change the sort order in a FileListBox (ie ascending to descending)


Using a FileListBox -
Hi y'all I'm adding some files to the filelistbox, but i can't remove them?! Besides, how do I describe the whole path for a particular file?


FileListbox from vb6 -
Hi guys Is there a direct replacment in vb.net 2008 for filelistbox?


Help, how to use a FileListBox -
How can I specify the file types that I only want shown in this FileListBox ? Thanks for any help anyone can provide.


#Adding CheckBox style to fileListControl & loading files in a listbox from filelist# -
hey, this is a question related to my thread http://www.vbforums.com/showthread.php?t=341772 ..... how do i add a checkbox stlye to my filelistcontrol? it can be done to the norma listbox but wat abt filelist? and...... hw can i make it so that the contents of a listbox and fi


filelistbox -
I use filelistbox When use click the button, the user will recieve the message box asking them to select the file when ithe user did not select the file list in the filelistbox. How I can do that? For i = 0 To File1.ListCount - 1 If File1.selected(i) Then


FileCopy in a FileListBox with Multiselect -
Hi, How can I allow user to copy selected files from FileListBox to a different location. Please provide a sample.


Saving FileListBox -
Can anyone give me the code to save the contents of a FileListBox as a text file, thanx. Pretty sure there must be a loop somewhere, anyway, any help is appreciated.


FileListBox*RESOLVED* -
How can I clear the contents of a FileListBox?


dirlistbox & filelistbox -
I have a DirListBox and FileListBox. What shoul I write, to selecting folder in Dirlistbox, in filelistbox will appear files in folder that is selected in dirlistBox?