Hi all,
I now have a very serious problem. I have a table that have to show in different datagridviews which are generated dynamically.
The table looks like this
C_id formula systemid mass user time
1 c6h6 1 23 s 00:99
2 c3h4 2 22 g 09:08
3 c7h8 1 11 f 00:88
4 c1h1 3 33 f 11:00
Now I have to show datagridviews according to "systemid", I mean there must be three datagridviews each showing one systemid which must look as
datagrid1
C_id formula systemid mass user time
1 c6h6 1 23 s 00:99
3 c7h8 1 11 f 00:88
datagrid2
2 c3h4 2 22 g 09:08
datagrid3
4 c1h1 3 33 f 11:00
now this datagridviews must not be static because there may be some more systemid later upto 6 or so. So, I must generate datagridview dynamically as many as systemid's and much more worst for me is I must be able to edit the content, add new content and delete it.
Please help me coding this part of it as it is my important part of my project before joining into a company.
I'm now doing my project in Csharp windowform.
Sorry and please feel free to post, if my explination is not clear.