Table or Datagrid...
-
hi.. In my application on a form , I want to list some paramter values as old & new. User entered values should be there in new column. But in c# we can use 'table' & 'DatGrid' for this. So which one is better for my application as i want user to enter those parameter values in a perticuler range only. Can i give dropdown combobox in table or datagrid so that user can select with only values given in that combobox. Can i do it with both Datgrid & table. Can any body give me any good document to do this using datagrid/table in c#. Thanks in adavance, Vinay
-
hi.. In my application on a form , I want to list some paramter values as old & new. User entered values should be there in new column. But in c# we can use 'table' & 'DatGrid' for this. So which one is better for my application as i want user to enter those parameter values in a perticuler range only. Can i give dropdown combobox in table or datagrid so that user can select with only values given in that combobox. Can i do it with both Datgrid & table. Can any body give me any good document to do this using datagrid/table in c#. Thanks in adavance, Vinay
Your terminology makes me think that you're using ASP.NET ? If so, you need to say so. I assume that GridView is not on your list because you're using .NET 1.1 ?
-
Your terminology makes me think that you're using ASP.NET ? If so, you need to say so. I assume that GridView is not on your list because you're using .NET 1.1 ?
Thanks for reply... But i am not using ASP.NET & i am using .NET 2. In my application i just want to set some parameter valuse to new values & at the same time i've to display old valuse on form with table/datGrid (old values i'll read from SerialPort communication & display it in 2nd column). My 1st column will be my parameter name & last column will be new vallues entered by user. On another button click event , i've to send those new values on serial port. Thanks, VInay
-
Thanks for reply... But i am not using ASP.NET & i am using .NET 2. In my application i just want to set some parameter valuse to new values & at the same time i've to display old valuse on form with table/datGrid (old values i'll read from SerialPort communication & display it in 2nd column). My 1st column will be my parameter name & last column will be new vallues entered by user. On another button click event , i've to send those new values on serial port. Thanks, VInay
vinay.p wrote:
But i am not using ASP.NET & i am using .NET 2.
Then, what do you mean by table ? Why is GridView not an option ?
-
vinay.p wrote:
But i am not using ASP.NET & i am using .NET 2.
Then, what do you mean by table ? Why is GridView not an option ?
i am new in C#. So while going through some document i came to know that we can use table(table means 'tableLayoutPanel') & DataGrid(DataGridView). But since i want user should not enter wrong values i am confused which one to use & how to use...? Can u suggest me any document to learn it. I am using Visual Studio 8. Thanks, Vinay