Link to home
Start Free TrialLog in
Avatar of ambuli
ambuliFlag for United States of America

asked on

How to display table in GUI

Hi Experts,

I want to display some data from a comma separated file in my GUI app.  It is a simple name with three different properties.

Name | Prop1 | Prop2 | Prop3
  abc   | 2        | 3        |4

What control should I use to display the data?  In MFC I recall there are some table control.  

Question 2:  What database should I use if I need to store the data in database?  I have noticed that MSSQL server is installed in my PC with VS8, should I use this?  I am new to .Net so please explain if I am missing some basics.

Thank you.

ASKER CERTIFIED SOLUTION
Avatar of MadDang
MadDang

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of amitrsharma
amitrsharma

you can use CListCtrl with with extended style
SetExtendedStyle(LVS_EX_FULLROWSELECT|LVS_EX_GRIDLINES);