Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have this project to do working with database in viusal basic, but the problem is i have the code its correct i mean it doesn't come out as error but it doesnt function when running the program

Here is the problem:
this is my code for the update button( to update the data in the datagrid)

VB
Private Sub btnUpdateComp_Click(sender As Object, e As EventArgs) Handles btnUpdateComp.Click
    Dim strTheComputerSelected = DataGridView1.SelectedCells.ToString

    Dim theComputer = (From aComputer In DB.Computers
                     Where aComputer.SerialNumber = DataGridView1.Focused.ToString
                     Select aComputer).FirstOrDefault



    theComputer.SerialNumber = txtSerialNum.Text
    theComputer.Color = cboColor.Text
    theComputer.ManCompany = cboMCompany.Text
    theComputer.OpertionSys = cboOS.Text
    theComputer.Price = txtPrice.Text
    theComputer.RAM = txtRAM.Text
    theComputer.ScreenSize = txtScreen.Text
    theComputer.Type = cboType.Text
    theComputer.Weight = txtWeight.Text
    DB.SaveChanges()
    UpdateComputersList()
End Sub


but it does not work!!

Any Comments?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900