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 gkittelson 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. CosmoNut

    VM Pro stops

    What version are you on? We had the same problem on a Win2k3 server with the VM Pro service stopping unexpectedly. We upgraded to the latest patch (2.1.14) and all is OK now.
  2. CosmoNut

    Object reference not set to an instance of an object error

    richfield, My guess would be that you need to specify the table in the datasource definition like so: Datagrid2.Datasource = dst.Tables("tblSales") I don't think a grid can bind to a dataset, I think it needs to bind to a table contained in the dataset. Cesar
  3. CosmoNut

    Cannot access the DataSet object from a DataGrid ItemCommand event

    Actually, I had the DataSet dimmed as Friend, so if it were possible to reference it, I should have been able to do so. Maybe Friend is not friendly enough?
  4. CosmoNut

    Cannot access the DataSet object from a DataGrid ItemCommand event

    You are correct Jennifer, at this point in the code the DataSet is somewhere near Jupiter and it cannot be referenced. The solution is to place hidden columns in the DataGrid which are bound to the key information needed to build the SQL statement for managing the required record(s). Then...
  5. CosmoNut

    Cannot access the DataSet object from a DataGrid ItemCommand event

    Hello, I have a DataGrid bound to a DataSet, with one column being a ButtonColumn. When the user clicks on the button, the code goes to the ItemCommand event handler where I try to use the index position of the button on the grid to access data from the DataSet fields. The code is the...

Part and Inventory Search

Back
Top