No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
heyyyyy... can i suggest something..?? you wanted to update the quantity of the product if a customer return an item right?? and then subtract your total sales if the item was returned by a customer.. was that it?? ... hmm..try this put labels to display the quantity of the item_number …
>another way to check the record is by using a listview..by calling a record Private Sub Text1_Change() For i = 1 To ListView1.ListItems.Count If Text1.Text = ListView1.ListItems(i) Then MsgBox ("Already Exist") Text1.Text = "" Text1.SetFocus End If Next i End Sub
hi, im new in vb.net i want to delete an item on a listview, this is my code If ListView1.SelectedItems.Count > 0 AndAlso MessageBox.Show("Do you want to delete this item?", "Confirm", MessageBoxButtons.YesNo) = Windows.Forms.DialogResult.Yes Then 'make sure there is a selected item to delete ListView1.SelectedItems(0).Remove() End If now my problem …
The End.
hyesin