Here is a datagridview whose data need to be displayed as follows:
constant1 constVal1 constVal1 constVal1 constVal1
constVal1 constVal1 constVal1 constVal1
constant2 constVal2 constVal2 constVal2 constVal2
constVal2 constVal2 constVal2 constVal2
factor1 levelOne levelOne levelOne
levelOne levelTwo levelTwo levelTwo levelTwo
factor2 levelOne levelOne levelTwo
levelTwo levelOne levelOne levelTwo levelTwo
factor3 levelOne levelTwo levelOne
levelTwo levelOne levelTwo levelOne levelTwo
No column headers nor row headers are to be displayed. Each factor has
its own "levelOne" and "levelTwo" values which are taken from user
input. Constant factors have a "constVal" which is also taken from
user input through a dialog box.
There can be up to four standard factors and any number of constant
factors. Factors are added at runtime; this happens when the user
enters the factor's name and its two levels into a dialog box.
The question is, how to create a DataGridView such that the values are
displayed as above based on the criteria given?
constant1 constVal1 constVal1 constVal1 constVal1
constVal1 constVal1 constVal1 constVal1
constant2 constVal2 constVal2 constVal2 constVal2
constVal2 constVal2 constVal2 constVal2
factor1 levelOne levelOne levelOne
levelOne levelTwo levelTwo levelTwo levelTwo
factor2 levelOne levelOne levelTwo
levelTwo levelOne levelOne levelTwo levelTwo
factor3 levelOne levelTwo levelOne
levelTwo levelOne levelTwo levelOne levelTwo
No column headers nor row headers are to be displayed. Each factor has
its own "levelOne" and "levelTwo" values which are taken from user
input. Constant factors have a "constVal" which is also taken from
user input through a dialog box.
There can be up to four standard factors and any number of constant
factors. Factors are added at runtime; this happens when the user
enters the factor's name and its two levels into a dialog box.
The question is, how to create a DataGridView such that the values are
displayed as above based on the criteria given?