So im trying to do a simple system in my VB Express Edition 2008 and what it does is add some car models (example) to a list box and stores it in a .txt file for future use. But when the user clicks a delete button it should delete from both the listbox and the .txt.I have to use only the FileOpen(OpenMode.Append or OpenMode.Input/Output) functions.
So im trying to do a simple system in my VB Express Edition 2008 and what it does is add some car models (example) to a list box and stores it in a .txt file for future use. But when the user clicks a delete button it should delete from both the listbox and the .txt. I have to use only the FileOpen(OpenMode.Append or OpenMode.Input/Output) functions.
I have been working on this for quite some time now. I have a listbox that loads the names from a .txt file. When the user selects names I need it to delete the items from the list. I have the code to remove it from the listbox, but when I reload the form it puts them back in because it's reading the file.
Im working on a school project where i add items to a listbox in two columns. The first being the name of a course and the second being the credit hours of the course. I can add and remove the items just fine BUT when i remove an item im also required to subtract the credit hours of said item from a variable i have called "totalhours." Essentially im trying to figure out how to subtract a certain piece of a selected listbox item from my class level variable.
For Each item In ListBox1.Items For i As Integer = 0 To ListView1.Items.Count - 1 If item.ToString = ListView1.Items(i).Text And ListView1.Items(i).SubItems(1).Text = TextBox4.Text Then
[code]....
It only deletes 1 listbox item while there are more items that have to be deleted.after debugging i get this:List that this enumerator is bound to has been modified. An enumerator can only be used if the list does not change.
I have been working on a pythagorean theorem calculator and am actually stuck on the final bit of code. What I am trying to do is check the values (integers) inside a listbox, remove duplicate number (both values), and input one of the values into a textbox.
Here is an example of what I am doing:
LISTBOX VALUES 2 2 3
[code]....
When the program runs, check listbox value #1 and listbox value #2, if listbox value #1 and #2 match (2 & 2), input that value (not both duplicates) into a variable, remove both of the duplicate values, continue checking the rest of the values, and finally multiply the leftover values. I am sure that sounds confusing. Here is what the final output will look like
I want to remove items from a listbox 1 at a time. I have two timers set up to remove the two types of items that are put into the list box. When there is a "Player 1 killed Button 1" following a "Player 1 killed Button 2" or vise-versa they get removed at the same time. Is there any way to prevent this?
Code: Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim XP As Integer [Code] .....
I need to know if there is a way to remove any items from a listbox if they contain no text. Like if there are three items(Blah, ,Blah) listed in the listbox like so (remove the middle line that is empty so the listbox now contains two items(Blah, Blah) listed like so Or if there is a way to do this to a textbox that would work too. I'm working in VB 2010
Im trying to remove a certain bit of text from my listbox item..
heres my code..
If ListBox1.Text.Contains(".zip") Then ListBox1.Text = ListBox1.Text.Remove(".zip") End If
and when i start it and it tries to remove it, it comes up with an error saying
Conversion from string ".zip" to type 'Integer' is not valid. ive tried, this code.. If ListBox1.Text.Contains(".zip") Then ListBox1.Text.Remove(".zip") End If
i'm creating a web form and i want a user to be able to make certain selections and then add the selections to a text box or listbox.Basically i want them to be able to type someone name in a text box ... check some check boxes and for it up date either a text for or a list box with the result on button click...
Currently, my application will send the contents of a directory into a list box. Dim folderDlg As New FolderBrowserDialog folderDlg.ShowNewFolderButton = True If (folderDlg.ShowDialog() = DialogResult.OK) Then ListBox1.Text = folderDlg.SelectedPath Dim di As New IO.DirectoryInfo(folderDlg.SelectedPath) [Code] .....
For now, all that is inside the directory is a text file. I would like my program to read the contents of the text file and remove a set of common words, but I don't really know how to move forward here. Would it be best to create a class that holds a set of words that I would like to remove, then loop through the text file, remove any words that match those inside my class and then write what's left to a new .txt file?
Basically, the user can type in a name and a job description into two different txt boxes and then click add. It then adds the name to the listbox and stores it in a string list (Public strList As New List(Of String)) it also stores the job description in a string list as well (Public strListDescription As New List(Of String))Then when you select an item in the list box it knows what data to bring up in the txt boxes using an array with these lists:
Code: Private Sub lstMyCourt_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lstMyCourt.SelectedIndexChanged Dim i As Integer
I'm having trouble removing both the number of adult golfers and children golfers in a group. I want to remove the item as well as update the order subtotal.
The Minigolf form code
Dim intTotalGolfers As Integer = 0 If IsNumeric(txtNumberOfAdults.Text) Then If CInt(txtNumberOfAdults.Text) >= 0 Then
How would I remove an item from the listbox.. I used the code below to populate using a class with description and value properties. I cant use listbox.items.indexOf("listitem1") to get index I cant use listbox.items.remove("listitem1") If I use listitem.items.removeAt(1) it works of course. How can I get my index in this case?
'Users Dim IAdapter2 As New ds_SecurityTableAdapters.Security_UsersTableAdapter Dim usersDT As ds_Security.Security_UsersDataTable = Nothing usersDT = IAdapter2.GetUsers() Dim userItems As New List(Of myItem) [Code] .....
I have to make a listbox with a few(8) names in it & double clicking on a name in the listbox will removed the name from it. I have already add the names into the form using the listbox.items.add method & would display the names in it. Then I enter the coding for 8 names in double_click procedure (listbox) using the "listbox.items.remove" method. However, when I try double clicking on a name in the listbox, it would remove all the names instead.
How can I find a listbox average removing the 2 lowest number? I tried DimintSmall AsInteger intSmall = lstGrades.Items.Item(0) ForEachItem AsIntegerInlstGrades.Items IfItem < intSmall Then intSmall = Item EndIf Next lstGrades.SelectedItem = intSmall I cant select or remove it
I'm writing a email program and i need to make it so that when I delete a item from a listbox it also deletes from a text file. Right now all it does is delete it from the listbox and when the program is reloaded its still there.
Dim arrEmailSelect As New List(Of Integer) Dim fileContents As String Dim thisEmail As New email
I've got a listbox build up as an array of items like this: First column is product id, 2nd column is name, 3rd column is price, 4th column is amount and I put them in an array: Public Item(3) As String,
I had a quick question. I'm desiging a program that users can enter a currency (dollar amount) in a textbox. Since the string I declared will be based on what the user typed in and I want to convert it to a decimal, I want to remove a "$" sign if the user made one.