Search results for query: *

  1. P

    Question How to retrieve hard drive temperature?

    I am looking for a way to retrieve the temperature of hard drives in VB Express 2008. I have found posts at a few different places that accomplish this with the following: Public Function GetDriveTemp() As Integer Try Dim searcher As New...
  2. P

    Question How to monitor drive activity in vb 2008

    Here's the answer: From bdbodger at MSDN How to monitor drive activity in vb 2008
  3. P

    Question How to monitor drive activity in vb 2008

    I'm looking for a way to monitor drive activity using Visual Basic 2008. I want to create a small utility to simulate an LED in the system tray for drive read/write activity. I've found several such utilities that do this, but they all lack one thing or another, or they are over bloated with...
  4. P

    Question How to save datagridview data to the database file.

    I agree, jmcilhinney. I just didn't know how to write that kind of sql code and couldn't find any help to learn. The query I was trying to use was a left-over from MS Access 1.1 when I first started using this particular database and all it did was sort the data, which I found that I didn't...
  5. P

    Question How to save datagridview data to the database file.

    How to save changes of a datagridview to the database I was finally able to solve this issue. When I originally added the datafile to the app, I dragged a query from the datasource onto the form to create the datagridview, but the delete, insert and update commands in the table adapter in the...
  6. P

    Question How to save datagridview data to the database file.

    Rev The TableAdapterManager was created when I first dragged the table from Data Sources onto my form. It sits in the tray area below the form design palette along with the DoBills_2009DataSet, sortBillsTableAdapter, sortBillsBindingSource, ToolStrip and ImageList. Only the...
  7. P

    Question How to save datagridview data to the database file.

    Thanks again, jmcilhinney. I created an exception string to return in a message box. Here is how the code for the rowleave even to my datagridview now looks: Try 'Me.Validate() Me.SortBillsBindingSource.EndEdit()...
  8. P

    Question How to save datagridview data to the database file.

    Also, jmcihenney, I have no intentions right now to ever deploy this app. It's just a small app I use to help make decisions in my personal bill paying process. I guess some day I might deploy it, but I'm a preacher. Programming is a hobby. I'm as clueless as to how to go about developing...
  9. P

    Question How to save datagridview data to the database file.

    Thanks for your input jmcihenney. I have set my project to compile for x86. I had to do that to even get the datagridview to display the data, and I have shared in an earlier post in this forum the way I found to do that. However, I guess that could still have something to do with the...
  10. P

    Question How to save datagridview data to the database file.

    I'm using VB Express 2008 in Windows 7 64-bit. I'm working on a project with a datagridview bound to a MS Access 2007 database. I want to use the datagridview to add, delete and update the data in the MS Access database. When I added the database file to the project through the Datasource...
  11. P

    data to display in the grid at run time?

    Pescadore _____________________________________________________________________________________ Solution: That's it! Thanks Arjun Paudel for the link. Here's the solution as found on XNA Creator's Club Online. It's by Stephen Styrchak. The following erorr: The 'Microsoft...
  12. P

    data to display in the grid at run time?

    Rev Thanks for the reply, cjard. I'm getting pretty frustrated. I started over from scratch: new project, new form, etc. The only things I've done are add the database and drag/drop a query on the form. I got the same as before: the data is there when I preview it, but not when I run the...
  13. P

    data to display in the grid at run time?

    I've added a datasource to my project and dragged an element from Data Sources onto my form. It automatically created a DataViewGrid and placed this statement in my form load event: Me.SortBillsTableAdapter.Fill(Me.DoBills_2009DataSet.sortBills). When I preview the data element from right...
Back
Top