DataGridView help
Hi,
I have created a robotics application where data can be searched for from an internal application, the data is then stored in a Lookup Table and displayed in a DataGridView.
The first time this application runs, the data outputs to the DataGridView all at once, however any time after this, the data outputs line by line, every time lookupTable/AddRecord is called - which I do not want.
I believe this is due to the DGV DataSource being set at the end of the first run, as part of the 'update_display' automation. Any time after that, because the DataSource is already set, it is just actively updating as any new data is added to the Lookup Table.
Is there a way to change my automation so that new Lookup Table data is not updated in the DGV until I specify that it should be?
Also, another question, is there a way to force the DGV to display scroll bars at all times?
Thanks,
Ryan