Search results for query: *

  • Users: Patty05
  • Content: Threads
  • Order by date
  1. P

    Datagrid Delete

    I have added and populated a datagrid adding a dataadapter to the form and making the connection and creating the dataset etc. When the form loads, the datagrid generates properly, and I can edit a field by clicking the field in the datagrid and type it in and I can add a new row by clicking...
  2. P

    Pulling data from a specific row in dataRow using Like

    I am trying to pull values from a specific row with a select stmt in a database so I can set some variables. However, my code is not grabbing the value and I am getting the error "Index was outside the bounds of the array". I am not sure what is wrong. conn = New...
  3. P

    Update time to the nearest 15 minutes

    I am trying to create somewhat of a time clock program. When the user punches in, I need the current time to round to the nearest 15 minute interval. For example, if a user punches in at 6:50 am, it needs to write to the database 7:00 am. If a user punches in at 8:05, it needs to read 8:15...
  4. P

    Update statement keeps creating a new row

    I am trying to update a row in a database that already holds data but instead, my code just creates a new row each time. Does the SELECT statement determine what will update? This code does not run but if I replace the SELECT statement with SELECT *, it will update the database but only create a...
  5. P

    Cannot Update Database

    I am going crazy trying to do the simplest thing in my code. I just want to update a database with new data. I cannot get this test code to work and I've googled for help for 4 days and even copied code word for word in some cases!!! The form loads correctly the problem is in the button click...
Back
Top