1 Attachment(s)
Using AxMSDataGridLib.AxDataGrid and ADODC components?
Upgrading old VB6 app into VB.NET app.
It has several AxDataGrid components and along they are paired with VB6.ADODC data "browser" component.
Can you suggest API docs or any sort of documentation on how to use these components?
Or I should just use appropriate replacement components in VB.NET?
Well, my guess is DataGridView will replace AxDataGrid and for ADODC what would be replacement?
But we can use Access to edit/find/delete data from tables. :D
Attachment 166307
Re: Using AxMSDataGridLib.AxDataGrid and ADODC components?
Ideally, you would use a data adapter to populate a DataTable, bind that to a BindingSource and bind that to a DataGridView. You can associate a BindingNavigator with the BindingSource to provide navigation. To save any changes made in the grid, you can use the same data adapter. There will be a Save button on the BindingNavigator.