hi friends
i have done the project in that i developed datadialgrid control
so whenever i enter the no of rows and columns in separate textboxes and click the button automatically will increase the rows and columns in the datadialgrid
can anyone give a solution
regards
vijay
Loading
paul danielPosted Mar 2, 2010, 1:48 AM
http://www.dotnetspider.com/resources/17172-adding-dynamic-row-datagrid.aspx
kiran kumarPosted Feb 27, 2010, 2:03 AM
mark the answer if it helps you
vijay antonyPosted Feb 27, 2010, 1:24 AM
Amit ChoudharyPosted Feb 26, 2010, 6:36 AM
for adding columns:
no adding row dynamically:
Dim newRow as DataRow = yourDatagrid.newrow() newRow.Item(0) = "yourText" etc. etc. etc. yourDatagrid.rows.add(newRow)
Don't forget to mark the answer if it helps.kiran kumarPosted Feb 26, 2010, 6:11 AM
i am familiar with c#,i can help you on that