Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using MFC. I need a control just like listControl, it has such functions:

MyListControl mylistControl = new MyListControl();
mylistControl.setDataSource(...);
mylistControl.setSQLStatement("select a, b, c, d from table where a > 3");

and system will have a listControl which is populated with the data from database, and generate the corresponding columns a, b, c, d respectively. If there is such kind of a control, please tell me. If you have any suggestion, please let me know. Thanks in advance!

share|improve this question
3  
C++ itself has no GUI capabilities - you need to specify what platform and libraries you are using. – anon Aug 24 '09 at 13:20
@Neil: Sad but true – the_drow Aug 24 '09 at 13:22
1  
@the_drow: not sad at all. If there was, you'd be stuck using it. As it is you can have any one of a multitude of GUIs... hmm maybe we should standardise on QT after all :) – gbjbaanb Aug 24 '09 at 13:27

1 Answer

up vote 5 down vote accepted

Depending on your platform you will need different code. You will need to use a GUI framework, there is no GUI standard library in the C++ language.

If you want Windows and C++ you can use MFC's CListCtrl, but this is not as powerful as you mentioned and you need to do your own data loading.

The more portable way would be to use Qt and it's QListView QSqlDatabase classes.

share|improve this answer
It's also worth noting that wxWidgets has the powerful wxGrid control – Diaa Sami Aug 24 '09 at 13:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.