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
~1K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for Lethugs

Private Sub btnDone_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDone.Click Dim i As Integer = dgv1.CurrentRow.Index form2.dgv2.Rows.Add(dgv1.Item(0, i).Value, dgv1.Item(1, i).Value, dgv1.Item(2, i).Value, dgv1.Item(3, i).Value, dgv1.Item(5, i).Value,dgv1.Item(5, i).Value) form2.show() end sub

Member Avatar for Lethugs
0
362
Member Avatar for kinjal.jain.7393

what tools do you want to use? simplify Datagridview or textbox. ''''''Datagridview For Each row As DataGridViewRow In dgv1.Rows If row.Cells(0).FormattedValue <> "" Or row.Cells(1).FormattedValue <> "" Or row.Cells(2).FormattedValue <> "" Or row.Cells(3).FormattedValue <> "" Or row.Cells(5).FormattedValue <> "" Or row.Cells(4).FormattedValue <> Then Using cmd As New MySqlCommand("Update tablename SET …

Member Avatar for Piolo_1
0
188
Member Avatar for kaye.santos.92
Member Avatar for kaye.santos.92

open The folder of your project then Execute the .sln file. and then open the solution explorer Project>applications>startup form. change it. make sure the project you open is the project you are seeking for. lesson learn that multiple solution in one project is not recommended.

Member Avatar for Piolo_1
0
169
Member Avatar for Piolo_1

i want to update all this column in 1 execution. any reply is highly appreciated.. thanku UPDATE tblstoreitems SET price='499' WHERE TypeOrModel = 'A130'; UPDATE tblstoreitems SET price='599' WHERE TypeOrModel = 'A140'; UPDATE tblstoreitems SET price='1899' WHERE TypeOrModel = 'Alpha Style'; UPDATE tblstoreitems SET price='1699' WHERE TypeOrModel = 'Amethyst'; UPDATE …

Member Avatar for Piolo_1
0
138

The End.