Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~2K People Reached
Favorite Forums

3 Posted Topics

Member Avatar for silversurf

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 …

Member Avatar for hyesin
0
1K
Member Avatar for meLiel

>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

Member Avatar for hyesin
0
175
Member Avatar for hyesin

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 …

Member Avatar for lolafuertes
0
215

The End.