No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
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
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 …
is your database is now existing in your project?
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.
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 …
The End.