Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by herbally

  1. herbally

    newbie question about updating datarow

    hmm....ok...seems like your idea kind of works. When I update the row directly through the dataview, the datagrid that is bound to the dv is updated with the new information, but when I call the da.Update command it doesn't commit the changes to the database. Here's my code: Call...
  2. herbally

    newbie question about updating datarow

    Obviously I already have considering that I mentioned my dataset which is filled with a dataadapter and that I read in the press book about modifying datarows.....what eludes me is how to go about modifying a certain datarow with using the row index since that changes....
  3. herbally

    newbie question about updating datarow

    I have a membership app that read driver's license info and adds/updates members in the access database. I'm using a dataview to filter the dataset and figure out whether or not the person already exists in the database, but I'm unclear how to programatically update their info if they do exist...
  4. herbally

    Dataset clearing for apparently no reason....

    in my first post I mentioned that the dataset is mysteriously cleared/empty when I call the updateDataset method from within the ClientListener module. My problem is that I don't know why that dataset is empty since I fill it in the form_load event and I never clear it prior to the...
  5. herbally

    Dataset clearing for apparently no reason....

    but thats the thing...I'm using a database that already contains 20000 members and if I put the line that cause the error in the form_load event right after I fill the database it returns a date/time = Max(LastUpdate). It only causes the error when I use the very same statement in he...
  6. herbally

    Dataset clearing for apparently no reason....

    oh and as far as not using an insert and a fresh select, I thought it would be less taxing on the database in a multi-user environment to just retrieve updated/added records rather than all 20000.
  7. herbally

    Dataset clearing for apparently no reason....

    rofl....thanks for the response first of all!! Second, I started writing this application with no prior knowledge of programming except the hello world apps I wrote in QUICK BASIC in an "Intro to Computer Proramming" class. I know that's not ideal...it was something temporary that functioned...
  8. herbally

    Dataset clearing for apparently no reason....

    Ok, I fill my dataset in the form_load event, and the datagrid loads up with the data fine. I can search it and update/add members. When another machine on the network adds a member (haven't even tested an update yet) it sends a message to the machine in question telling it to update. The...

Part and Inventory Search

Back
Top