have anyone encounter anything like that in the picture, it is from microsoft dynamics rms.
as seen picture, when the user select the row, info and button begin to show under the actual row.
anyone has an idea what component is this?
TIA,
elitefox
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.
Ruther AngPosted Nov 19, 2009, 2:42 AM
is it a datagridview to start with, it looks to me it is.. if yes, can anybody give me any lead?
I was thinking about usercontrol inside the datagridview for the mean time... but if successful it will show only on a column but will not take the whole row below the selected row
Ruther AngPosted Nov 18, 2009, 5:05 AM
Unfortunately I didn't make my question clear...
My question is that how did Microsoft showed the price and the button because I can't find anything like that in the datagridview wizard e.g. add button, checkbox, etc.
and whats more is that it is below in every row but is only shown when the row is click. I may not be able to find exactly like it but at least a starting point on how to do it.
Thanks again,
elitefox
Lalit MPosted Nov 18, 2009, 4:32 AM
VB.NET:
Dim theDataRow as DataRow = theDataSet.Tables(index).Rows(Index)
C#:
DataRow theDataRow = theDataSet.Tables[index].Rows[index];
if you want to directly get the row from the dataGridView itself, the object type changes. So instead of a DataRow, which is used for DataTable objects, you need to use DataGridViewRow:
VB.NET:
Dim theDataGridRow as DataGridViewRow = Me.theDataGridView.Rows(Index)
C#:
DataGridViewRow theDataGridRow = this.theDataGridView.Rows[index];
Show this link for more discus