Hello:
How do I define a datagridview in a Class.
I tried:
DataGridView dataGridViewTemp = new dataGridViewTemp();
But it gives me an error.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Nouman Bashir Bashir AhmadPosted May 19, 2010, 3:42 AM
an object can be create like this.
DataGridView dataGridViewTemp = new DataGridView();
now no error will be occure.....
Thanx
GustavoPosted May 19, 2010, 9:27 AM