Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~10.3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for smitty68503

I am currently working on a project that has a textbox I need to do a validation on. I want to actually do two validations: 1) Make sure it is an integer and 2) Make sure it is divisible by 10. I have done a lot of searching and have …

Member Avatar for raidenx44
0
338
Member Avatar for smitty68503

I am currently working with a website that is very difficult to navigate and you have to open up multiple tabs. I have no access to the website or the database. Just seeing if I could perhaps query through the website to bring up the info on my application.

Member Avatar for Rahul47
0
86
Member Avatar for smitty68503

No mapping exists from object type System.Windows.Forms.DataGridViewRow to a known managed provider native type. Using conn As New SqlConnection(My.Settings.Smitty) Using cmd As New SqlCommand() With cmd .Connection = conn .CommandText = "Update Repairs set status = @status WHERE RepairNumber = @repairNumber" .Parameters.AddWithValue("@status", "Awaiting Part Installation") .Parameters.AddWithValue("@repairNumber", RepairInventoryDataGridView.Rows(4)) End With conn.Open() …

Member Avatar for smitty68503
0
173
Member Avatar for smitty68503

Try Dim I As Integer For I = 0 To DataGridView1.Rows.Count - 1 Dim ordernumber As String = DataGridView1.Rows(I).Cells(0).Value Dim repairinvoice As String = DataGridView1.Rows(I).Cells(1).Value Dim itemname As String = DataGridView1.Rows(I).Cells(2).Value Dim orderedquantity As String = DataGridView1.Rows(I).Cells(3).Value Dim itemcost As String = DataGridView1.Rows(I).Cells(4).Value Dim saleprice As String = DataGridView1.Rows(I).Cells(5).Value Dim …

Member Avatar for Maligui
0
3K
Member Avatar for jc.king95

Hi. My laptop is going through a crisis. Is 1 year old and I'm really worried. When I press the power button the lights blink and then they turn off. And it's really hard to turn on. But sometimes, I plug the power cord and it starts blinking and it …

Member Avatar for Dardan89
0
268
Member Avatar for smitty68503

I have been struggling with this for awhile now. lol I have no code to post because I haven't even started it. I can do the insert statement just fine from vb.net code to a sql database. That's fairly easy. However to do an update statement from a combobox to …

Member Avatar for Reverend Jim
0
1K
Member Avatar for smitty68503

I have an inventory system I am making for my business. I have a form that has a listbox control that lists all the orders that have been submitted. I also have a datagrid that lists the items in the order based on what is clicked in the listbox. I …

Member Avatar for smitty68503
0
196
Member Avatar for smitty68503

I am currently stuck on a project where I am populating a datagrid from a series of labels and textboxes. I have that part down. Now for the part where I actually add it do the database, I am having a problem. It is actually adding everything to the database …

Member Avatar for smitty68503
0
182
Member Avatar for newbie12345

Good day programmers!. i have here a login in form1 that is connected to my sql database. i want that if i login in form1. the form2 will show my name. can anyone help me?.

Member Avatar for smitty68503
0
5K