Multi Select On A Listview Control?
Apr 19, 2012
Can a listview multiselect in the same way as a listbox can, when it is set to electionMode = multiSimple?for instance when the listbox is set to selectionMode = multiSimpleyou can just select any number of items in the listbut...with a listview you can only multi-select when you hold down Ctrl. As soon as you lift the Ctrl key and click on an item it de-selects everything and only selects the last one you selected
View 4 Replies
ADVERTISEMENT
Feb 26, 2011
I made a program (As usual) that plays media files using the ax.interlop.wmp.dll (windows media player). I also made a listview on the form that has gridlines. i have a problem with my mutiselect feature though. it just adds the same filename for every file, but in the amount files (Ex: if there is 8 files, it adds the name of the first one 8 times) i just want it to add every single filename to different rows, here is the current code that i have:
Sub openFile()
With OpenFileDialog1
.DefaultExt = "Mp3"
[Code].....
View 2 Replies
Mar 18, 2009
Ok lets say you have a listview well call it "lv". There are items A, B, C and D. If i select A, C and D (holding ctrl) and hit a button it enters A, C, and D in a text box like below
"A(space)C(space)D(space)"
note: (space) is a space
how would i go about doing this? Below is the button that you would hit to send the selected items text into the textbox. (doesnt work)ERROR i keep getting: InvalidArgument=Value of '3' is not valid for 'index'. Parameter name: index
[Code]...
View 6 Replies
Jun 11, 2011
The code below selects all items in a listview control,fine,but I was wondering how I could code to select all but the very last line in the array.[code]
View 5 Replies
Apr 19, 2012
I want to populate a listview and leave selected records that are true
I have a DB record which is ID int, desc varchar, selected boolean.
I have tried the code below
LVProducts is a Listview and DS is a dataset
CODE:
View 3 Replies
Sep 2, 2011
I am trying to make a listview custom control based on the standard listview control that will allow me to drag a column header outside the standard listview control and drop it on a panel. I plan to use the drop event to determine which column I should group by view on.
View 2 Replies
Mar 30, 2011
I have a list box on a form and it works fine for what I want to do.I am wanting to edit items on the form, this means populating the listbox and then selecting the relevant items.
My listbox contains a list of item sizes, i want to select the sizes which belong to the item being edited.
can someone give me some pointers.I tried me.lstItemSizes.SetSelected(i,true) but this only works for a single item.
[Code]...
View 4 Replies
Dec 15, 2010
Private Sub ListBox1_DragDrop(stuf) Handles ListBox1.DragDrop
If e.Data.GetDataPresent(DataFormats.FileDrop) Then
Dim Fs() As String
[code]....
View 9 Replies
Feb 20, 2012
'look at the picture
'dtg1.cell(0) = file directory
'im select multi file and i want to chang attrib all file select in dtg1
For Each fl As System.IO.File In dtg1.SelectedRows
System.IO.File.SetAttributes(dtg1.Rows(dtg1.MultiSelect).Cells(0).Value, &H80)
Next
View 6 Replies
Oct 13, 2009
i have been given the task of making a small program in vb.net to have two list boxes. The first list box contains the data and the second one is blank, when you select the one bit of data from the first list box it can be draged and droped into the other list box. my task is to make it so you can select multiple bits of data from the first list box and all that is selected is draged over to the second one when you drag and drop it.
View 1 Replies
Dec 15, 2011
I had set the multiselect option to true for listbox.Let me know how to move the list items up and down with this option.
View 2 Replies
Oct 6, 2009
I have been given the task of making a small program in vb.net to have two list boxes. The first list box contains the data and the second one is blank, when you select the one bit of data from the first list box it can be dragged and dropped into the other list box. my task is to make it so you can select multiple bits of data from the first list box and all that is selected is draged over to the second one when you drag and drop it.
View 1 Replies
Oct 5, 2011
I have a list box that is bound to a table in a database. It produces a list of companies. The user will then come along and select multiple companies that they want to view information about, and then they hit a select button which I'll display the company information (e.g company name, company site, address e.t.c) in a gridview underneath. However the issue that I am having is that it only displays ONE of the multiple companies selected and its always the top one. How I get all the companies to be displayed in the gridview?
I am programming in vb.net
<asp:ListBox ID="ListBox1" runat="server"
DataSourceID="SqlDataSource11" DataTextField="compName"
DataValueField="compDataID" SelectionMode="Multiple" AutoPostBack="True"></asp:ListBox>
<asp:SqlDataSource ID="SqlDataSource11" runat="server"
ConnectionString="<%$ ConnectionStrings:IWSRiskAssessmentConnectionString %>"
[Code] .....
View 3 Replies
Jul 19, 2011
I want to select many items from the listbox in vb .net i. e i have the following code:
For i As Integer = 0 To Me.lstdep.Items.Count - 1
If dt.Rows(0)(3).ToString.Trim = Me.lstdep.Items(i).ToString.Trim Then
lstdep.SetSelected(i, True)
End If
Next
running the above code i can select only a single item from the sql server 2005.But i want to select multiple items which are seperated by comma in the back end ....
View 2 Replies
Feb 23, 2010
I've spent FAR too long trying to troubleshoot this simple operation.I want the user to select multiple files in an OpenFileDialog (called OpenFileDialog1), click OK, and then have the filenames display in a listbox (called ListBox1). When I run, the openFile dialog allows the user to select mutliple files. However, on clicking OK, the dialog repons allowing the user to select only a SINGLE file. Then, it throws an "outside of array" exception.
[Code]...
View 4 Replies
Mar 31, 2012
I have a listbox populated with dates in the format of dd/mm/yyyy e.g. 12/03/1983, 06/07/1987 etc.. Could someone please post the code that I could use so that I could search the listbox to multi-select the dates that fall within a specific month (not year or day). So for example I might want to highlight all the dates that contain the month **/10/** (october). I'm really struggling with this.
View 4 Replies
Jan 24, 2012
i have having a annoying problem to do with loops.
[Code]...
When the user selects a few rows from my list box i want to run code on them selected items which i can do fine, but when the user only selects one of items and hits the button. it goes throught the loop first and gets the picture and all is fine its when it comes back to this function after there are no more items to perform tasks on. it increments index again and then falls over because its out of bounds of the array. i want it to stop after one loop but i also want it to be able to have the multiselect option still so the user has a choice.
View 2 Replies
Feb 20, 2009
I am currently using the following code to store all of the items from a listbox control in an array, and then build a string based on the array items, trimming the last two character of the string to remove the ", ". I am looking to do something similiar for my multicolumn listview control but am concerned about how to store the multiple subitems for each item in the array.
Dim myStr (listbox1.items.count) as String
'store all active medications information in an array & build a string
For i As Integer = 0 To listbox1.Items.Count - 1
[code].....
View 2 Replies
Sep 27, 2009
I have a favourite form and it has 2 colums i want to save both colums to a text file then when the form reloads i want it to read the text file and display the info in the text file
View 1 Replies
Apr 12, 2009
In one of my other posts I asked how would I update more than 1 item in a listview, I have been still figuring that out when It occured to me that I could use code along the lines of this
Dim a As Integer = 0
Dim days As String
Do Until a = ListView1.Items.Count
[code].....
View 5 Replies
Nov 8, 2011
Can i select multiple items in a Checked list Box? I have been tryng for soemtime now but I just dont seem to get the multipe selectd items even when I put it in a loop! Listbox has the member of being Selected. A checklistBox doesn't why? I need to select mulitple items in a CheckedListBox and save it in a database.
View 2 Replies
Dec 21, 2010
I want to highlight some of the letters in each row of col1
[Code]....
whether the text can be said in reverse color or in bold font is ok for me.
View 3 Replies
Nov 25, 2011
In VB.Net 2010, is there any way to do multi-select in a drop-down/combobox, preferably with check boxes in the drop down? I've seen various discussions on the 'net about this but no such beast appears to exist within the tool.?
View 4 Replies
Aug 24, 2011
How can you disable the multi-select using the windows forms datagrid in vb.net? I want the user to have only the ability to select a single row.
View 15 Replies
Jun 29, 2011
I have a ListView control as below
[Code]...
View 2 Replies
Mar 26, 2011
well i am populating a listview with some entries from an explorer tree, but i want to create a multi-column listview in which column 1 holds
the name of files added by me and column 2 hold locations of the corresponding file.
View 3 Replies
Aug 19, 2011
I got a very simple question regarding resizing listview columns. I have a form with a listview anchored to it (top, bottom, left, right). The form is resizable and the user will be able to resize the listview columns manually. However, I need the listview to resize its columns automatically when the form is resized (especially when its maximized).
But, I don't want all the columns to resize, only the ones I choose. For example, the listview will have 6 columns in total (0-5). When the user resizes or maximizes the window, I need only columns 2 and 4 (or columns 3 and 5 or columns 1 and 5) to resize. Now, I have come up with two pieces of code as listed below.
Code Part A: The following code only resizes one column. When the form is maximized, only the column ID provided will resize and fill the rest of the control. It works perfectly but I need to be able to resize multiple columns (as explained above):
Public Sub lvResizeSingleCol(ByVal resizeColumn As Integer, ByVal listViewName As ListView)
Dim w As Integer = 0
For column As Integer = 0 To listViewName.Columns.Count - 1
If column <> resizeColumn Then
w += listViewName.Columns(column).Width
[Code] .....
View 2 Replies
Jul 27, 2009
Im trying to figure out how to query a dataset when I select multiple values in a list box? I have the list box linked to the dataset and am using a button to search the values selected in the list box. I don't know what to do!
View 7 Replies
Apr 30, 2011
I've been searching and searching, but I haven't been able to find a halfway-decent way of adding multiple columns of data into a WPF VB.NET ListView. The data I'm adding is not from a datasource. [code]...
View 1 Replies
Apr 14, 2010
Populate *multi-column* ListView with *simple* XML data?
View 2 Replies