.net - Get List Item Value From DragEventArgs
Dec 22, 2009
I'm trying to drag a listitem from a listbox onto a picture box. The list item is a persons name. The value member of the list item is the ID of the people listed. When I drop the list item onto the picture box I want to use the persons ID to query a photo and load that photo. I can't seem to access the value though, only the name text, using e.Data.GetDataPresent where e is the DragEventArgs. Could someone point me in the right direction?
View 2 Replies
ADVERTISEMENT
Jan 1, 2012
I have a list box on the form which functions as a copy/paste. When you copy something, it is automatically added to the list box as a "clipboard helper". Here is the problem,however: if the text is more than 1 line, the list box does not show all the text.It ends up looking messy.So getting back to my question, is it possible to make the list box item height for an item depending on the amount of lines that item contains?This is a one line sentence in the list box and should take up one line.This is a multi line sentence in the list box and should take up two lines for item height.
View 11 Replies
Feb 12, 2011
I'm having some difficulty with a sorted & grouped listbox in WPF vb.net 3.5 that has an items source bound to an ObservableCollection.
What I want to be able to do is to retrieve a piece of data from the ObservableCollection items source depending on what item in the listbox the user has selected.I've almost got it working but because the listbox is sorted it does not match the index of the items source.
[code]...
As I previously mentioned, because the lstBox is sorted and also grouped the index's don't match up.Does anyone know how I can get the correct information I want from the List Source depending on the selected item in the list box?
View 3 Replies
Oct 13, 2011
How someone would select an item from a list box and click a button and have that item go into another listbox with it's price? I seem to be stuck on this part.
Here's my code:
I want to select the first option from the first listbox and I want to put it into another listbox along with the price of that item on the same line in the listbox. I can't seem to figure out how to that.
Public Class Form1
Const dcmPRICE_STRESS As Decimal = CDec(595.0)
Const dcmPRICE_TIME_MANAGMENT As Decimal = 695
[CODE]...
View 12 Replies
Feb 13, 2011
my program downloads into a combobox every item(line) that is in a text file located on a server.
Every line in the text file ends with "a)" or with "g)".
Now I just want to make 3 radio buttons:
- one that will allow the download in the combobox only the item ending with "g)"
- one that will allow the download in the combobox only the item ending with "a)"
- one that will allow the download in the combobox of both (I already know how to do).
How can I do so?
To download the entire list in the combobox I do:
Dim List As String = client.DownloadString("http://mywebsite.com/mytextfile.txt)Dim lines As String() = List.Split(New String() {ControlChars.CrLf}, StringSplitOptions.RemoveEmptyEntries)ComboBox1.Items.Clear()
ComboBox1.Items.AddRange(lines)
View 13 Replies
May 14, 2012
how whould I go about deleteing an item from a listbox and it will select the next available item.you know like the treeview control selects the next node if you delete one.
View 2 Replies
Mar 23, 2011
Public Class notifierMain
Public Class Contacts
Inherits List(Of row)
Public Sub New()
[code]....
When I debug this winforms application I get curType = "notifier.notifierMain+Contacts+row" I want to the Validate function to know it is in MyContacts. How do I do this?
View 3 Replies
Jun 18, 2009
i want to stop accepting form drop down listbox if certrain criteria is not met [code]how i can cancel the selection of drop down list?
View 3 Replies
May 5, 2010
i want to search item A (from a list of X items) in list B but i want to get the item not found example Search ITEM A in LIST B if not found then return a print....if found continue with ITEM B..and so on.
View 5 Replies
Jan 11, 2011
I have a List myList of MyObjects. Is it possible to check if myList contains a particular myObject based on a property of myObject in VB.NET? In C#, you'd something similar to this right:
myList.Exists(myObject => myObject.property1 == 3)
View 2 Replies
May 30, 2011
I have a List(Of MyObj), and I want to iterate through that list and compare each element to all other elements in the same list, excluding (if possible) the same element. I have a solution that works, but it's slow and uses double For loops. It may possibly have also summoned Cthulhu from his sleep. This below is a sanitized version of what I have:
Dim MyList As New List(Of MyObj)({Obj1, Obj2, Obj3, Obj4, Obj5, Obj6})
If MyList.Count > 0 Then
For i = 0 To (MyList.Count - 1) Step 1
[code]....
View 3 Replies
Nov 15, 2011
I want to know how to test the 1st list box if it has items more than the other list box but by one item, here is what i have: If lstInvisibleTv. Items.Count > lstInvisiblePc.Items.Count Then it works good if the lstInvisibleTv list box is greater than the other list box by one but it also works if it is greater the other one by one or more which I do not want. I want it to work just by one.
View 3 Replies
May 27, 2012
I have a program that will compare an array of grocery list items glist and an array of coupon item clist.When I compare the two and if there is a match somewhere in the array I want to have a picturebox visible.When there is no match, I want the picture box not to be visible. [code] The code seems to work great until I come to the else statement.When the code finds a match it displays the picture box and the msgbox without error, but as soon as the message box is cleared, even though i've input it as an ELSE statement, the picturebox goes false again.Does anyone have any idea of how I can "hold" the picturebox to stay visible while the match between the arrays exists?
View 18 Replies
May 25, 2012
Regarding my college project. i'm working on a sales system . i have a form which consist of all the following information( item code , item name , item price , quantity of item ) which is display using a data grid . data input by user using text box and all this information will be stored in a database(sales database) i'm using ms access 2007. the grand total will be displayed in a text box . and amount paid will be input in a text box too , my major problem now is how to i create a reciept that will have all this information of the purcase. i have a reciept button . what the next step ? i dont have any idea how to get the reciept done.
Imports System.Data.OleDb
Public Class Form5
Dim con As New OleDbConnection
[CODE].......................
View 9 Replies
Jan 5, 2012
I created a class where i declared some properties.[code]...
This gives me an error about Index was out of range. Hpw can I properly access the properties in BlogPost class?
View 2 Replies
May 13, 2011
Nearly identical to How can I get every nth item from a List<T>?
But I'm having trouble turning
List<T> list = originalList.Where((t,i) => (i % 5) == 0).ToList();
Into VB.Net code.
View 2 Replies
Aug 19, 2011
I'm trying to create a Combobox List and I created the following my first try:
Private Sub ComboBox1_DropButtonClick()
ComboBox1.List = Array("LI-3:comparing and contrasting two or more print sources based on
[code].....
View 1 Replies
Jan 23, 2012
i am trying to 'Update' an item in a list The idea i was try to use was going to be to remove the item then add it again. so far this is the code i have
[code]...
The problem i am having is here,Tempcarmake has a Make property which holds the car make eg Honda, Ford, VW i want to find the item in the that has the same Make as the TEMPcarmake that the user has been using
View 1 Replies
Mar 9, 2010
I am making a password-storage application on Visual Basic (2008). I need to know how, when you add a list item (which I already know how to do), to also specify a password to go with it. Then when you select it on the listbox it displays the password.I am using these codes right now but it crashes...
Code:
Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
MsgBox(password(ListBox1.SelectedIndex))
End Sub
[code]....
View 5 Replies
Sep 10, 2010
I have visual basic 2008 express. i am learning through videos at LearnVisualStudio.Net and the next step is to add item which is the sql database. i don't have this as one of my choices? am i suppose to have it with express? if not, can i get it somehow and add it to my Add Item list as one of my choices? I have the local and the server database but the video i'm following has an SQL database. Again i am just learning so be easy on me.
View 7 Replies
Oct 22, 2009
I'm sure I read somewhere that this is possible. Is it possible to add an item to the start of a list rather than at the end? And of course, I'd want it to push all the other list items down, not just over-write the first item. Is that possible?
View 3 Replies
Mar 8, 2010
I wish to create a drop-down list box with items in it. Easy to do and done that. What I also wish to to is assign a numerical value to each list item. I believe under VB6 is was done using the list's `Value` property to set and get the item. It's so I can write a one byte value to a file but display a text value on the form. Don't wish to mess wish classes and arrays, but if I have to I guess it'll be have to be done.Was looking at some examples of making in-memory arrays/datasets for a list-box but just sees like a programming overkill for the simple thing I wish to do.Put it another way....
List box item 1 = "First option". List box value 1 = 35
List box item 1 = "Second option". List box value 1 = 44
List box item 1 = "Third option". List box value 1 = 3
If the user selects "Second item" from the drop down list box then that property do I use to retrieve that list item's value `44`. Also, when I pprogramatically populate the drop-down list, how to I set each lite item's `Value` property accordingly. As in the example 35, 44 and 3 Tried using `SelectedItem` and `SelectedValue`?
View 6 Replies
May 13, 2010
I have two lists with strings as follows
list1=[Information,want,wall,east]
list2=[castle,information,want,wall,fortification]
List 2 is bigger than list 1. I am trying to compare each item of the list with each other as follows. The problem is that not all items are compared since Index1 <> list1.count. If I take this out I am getting an error ("index our of range").
For index1 As Integer = 0 To list2.Count - 1
If index1 <> list1.Count Then
if list1.item(index1) <> list2.item(index2) then
[Code].....
View 15 Replies
Aug 3, 2010
i have a sub that checks all drives on a computer;
Dim getInfo As System.IO.DriveInfo()
getInfo = System.IO.DriveInfo.GetDrives
For Each info As System.IO.DriveInfo In getInfo
TextBox1.Text = TextBox1.Text & info.Name & vbCrLf
Next
this shows all drives in textbox1. now if i select the drive i want, i can then check the free & total space with this sub;
Dim cdrive As System.IO.DriveInfo
cdrive = My.Computer.FileSystem.GetDriveInfo(TextBox1.SelectedText)
TextBox2.Text = TextBox1.SelectedText & " has " & cdrive.TotalSize / 1024 / 1024 / 1024 & "gb total space" & vbCrLf
TextBox2.Text = TextBox2.Text & "and " & cdrive.TotalFreeSpace / 1024 / 1024 / 1024 & "gb free space"
all this is good if i select the drive i want to check. but if i only click the drive, since no text is selected, the second sub does not work.is there a way to check at which index the cursor is, grab the item of the index, and pass it to the sub so i don't have to select the text itself?
View 6 Replies
Dec 17, 2010
Sorting arrays are useful when you want to get the first/last/min/max logical item of a list. I.E. A list that contains numbers and you want to find the Min/Max (without LINQ), you can sort the list and pull the first/last element. It's also useful to display lists to the user in alphabetical order.
View 2 Replies
Nov 3, 2011
I do have a multi select dropdown box.I want all the selected items uin in a string with comma seperated value.[code]I want a shortcut like join to accomplish the task.
View 1 Replies
Sep 9, 2009
I am trying to select a list of names from a database table which I need to put into a dropdown list to select one or more of those to use for reporting criteria later on. This what I have so far:
If ConnectDatabase() = False Then
UCSMISDB.Open()
Else
Dim sqlStatement As New SqlClient.SqlCommand( _
"SELECT * FROM support_division", UCSMISDB)
Dim sqlResult As SqlClient.SqlDataReader = _
sqlStatement.ExecuteReader()
sqlResult.Read()
cbDivision = Division
Division = sqlResult.Read.ToString.ToCharArray()
End If
I do not get anything in my combobox, and if I make a few changes I sometimes get a True or False. How can I get the list of item to show in the box and then select more than one to save for re-use later?
View 1 Replies
Jun 5, 2008
I am building a small utility to transfer files. I have a list box that I am adding the file names to be moved. The question is how to I add a text and a value field to a list box item. This will not be databound it is an unbound list box. I am using this to add the filename but I want the value to have the full path for later file moving. So how do I add a value and a text to an item?
Me.lstFilesToMove.Items.Add(System.IO.Path.GetFileName(openFileDialog1.FileName))
View 5 Replies
Aug 16, 2009
I have a BindingList (of Class) list that is the source for a datagridview and I'm trying to figure out how to remove a selected line from the list.[code]...
View 2 Replies
Jan 18, 2010
I need a piece of code which will remove a highlighted item from a listbox.
View 3 Replies