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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pescadore

    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 ManagementObjectSearcher("root\WMI", "SELECT * FROM...
  2. pescadore

    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...
  3. pescadore

    How to save datagridview data to the database file.

    I've solved this problem, but I'm not sure I can adequately explain how the solution works. First of all, the datasource was a query residing in my MS Access datafile rather than a table. When I changed the datasourse to the the tables in the datafile, insert, delete and update commands were...
  4. pescadore

    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...
  5. pescadore

    How to get data in datagridview to display at run time?

    _____________________________________________________________________________________ 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 .ACE.OELDB.12.0' provider...
  6. pescadore

    How to get data in datagridview to display at run time?

    Thanks RiverGuy. My .DataSource property is set to the bindingsource. The bindingsource.DataSource property is set to the dataset and it's .DataMember property is set to the correct table/query. I did build the project and when I run the executable I get this error message: "The...
  7. pescadore

    How to get data in datagridview to display at run time?

    Thanks for your response, MzKitty. I guess I don't know how to bind the datasource. I assume that Gridview1 in your example is the name of the datagridview control on my form. Mine is named SortBillsDataGridView, so I would bind the control with SortBillsDataGridView.GetData(). That...
  8. pescadore

    How to get data in datagridview to display at run time?

    I'm using Visual Basic 2008 in Windows 7. I've added a datasource to my project and dragged an element, a sort query, 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_2009DataS...

Part and Inventory Search

Back
Top