C#.net Control Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm fairly new to C# although I have been taking some classes. Regardless I
am attempting to create a form that essentially has a scrollable window where
users can enter information in a table format, similar to excel. Also need
the capability of radio button/checkboxes generated for each line, and
capability to have around 1k lines. What controls would be a good place to
start with this endevour. Thanks.
 
Hi there

You could start with a datagridview, though you would need to have setup a
datasource for this to store/retrieve the data i.e. an access/sql server
database.

I'm also fairly new to c# so I might be way off, but the datagridview
component certainy would meet your requirements, if you define a boolean
value in the datasource the datagridview will show a checkbox for that
database entry.

HTH
Darren Sim
 
Back
Top