Link to home
Start Free TrialLog in
Avatar of zero_point_o
zero_point_oFlag for United States of America

asked on

How could I write my own spreadsheet application? (C++, Win32)

What's a good way to store (in memory) and manipulate (in memory) data of a variety of data types? For example, in an application like MS Excel how is the spreadsheet represented in memory?

Also, I'd like to know how to write a spreadsheet like control for my application.

- zero_point_o
ASKER CERTIFIED SOLUTION
Avatar of Kent Olsen
Kent Olsen
Flag of United States of America image

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 zero_point_o

ASKER

But, then I wouldn't learn anything...
SOLUTION
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
Thanks, grg99. Truth is I've been considering using Variants but I wanted to know if there was a smarter way. I am a farely inexperienced C++ programmer at this point.

What about the visual representation? What Win32 based controls work well for spread sheet apps?

- zero_point_o
SOLUTION
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
What about using a Dataset in place of a variant? I'm a little confused about how to import a CSV file into one though...
Thanks for the assist. Phew! There's my question done for the year. ;)