Search results for query: *

  1. C

    delete and edit record

    msflexgrid how do we use msflexgrid in vb.net thanks &regards laby
  2. C

    Need query for findin next field from sql

    gmode in vb.net how do we use 'cmdOK.Tag = "add",gMode = 1,lmode = 1'(this is in vb) in VB.NET thanks and regarsds Cheruvannoor
  3. C

    Need query for findin next field from sql

    i want to update my table after deletion my sample code is given below Private Sub Butndelete_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Butndelete.Click If Txtkey.Text = "" Then MsgBox("No Records To Be Deleted", vbExclamation, "System...
  4. C

    Need query for findin next field from sql

    hello sir i am new to vb.net.how can i do that thanks and regards cheruvannoor
  5. C

    Need query for findin next field from sql

    i am using buttons(first,next,previous and last) for displaying fields from sql suppose i had deleted a particular field,then the table is not updating.Bcoz of that if i had deleted the 3rd field,by using 'next'button i cant move to 5th field.what can i do for that
  6. C

    Need query for findin next field from sql

    update command i want to update a table using sql query after deleting a field
  7. C

    Need query for findin next field from sql

    i want sample code for getting next field from sql.i had one query,but problem with that is suppose i had 5 entries,if i had deleted the 4th entrythen it wont move next from field '3' My sample code is given below query = "select * from branch where brbranchid= " & Txtkey.Text & " +1"...
  8. C

    Format for updating a field in vb.net

    Format for updating a field in vb.net Reply to Thread Is there anything wrong in the update format Private Sub butnupdate_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles butnfind.Click conn = New SqlConnection conn.ConnectionString = "data...
  9. C

    Format for updating a field in vb.net

    i am getting the same error
  10. C

    Format for updating a field in vb.net

    i want to get format for updating a field in vb.net.i am using sql as database.my code is given below conn = New SqlConnection conn.ConnectionString = "data source=localhost;initial catalog=CARGO;user id=sa;pwd=" conn.Open() myconn = New SqlCommand...
  11. C

    To find next and previous record

    i just a beginner of vb.net..i want to get code for find 'next and previous' record from sql database through vb.net form that i made with buttons my code is given below.. Dim query As String conn = New SqlConnection conn.ConnectionString = "data source=localhost;initial...
  12. C

    delete and edit record

    i just a beginner of vb.net..i want to delete and edit a record from sql database through vb.net form that i made with buttons
  13. C

    delete and edit record

    delete record i just a beginner of vb.net..i want to delete a record from sql database through vb.net form that i made with buttons
Back
Top