Forum: C++ Oct 9th, 2008 |
| Replies: 2 Views: 604 yup! No doubt .. It will crash ..As ancient dragon said u have to put |
Forum: C++ Jun 13th, 2008 |
| Replies: 3 Views: 2,142 I acknowledge the answer given my Mr.Rajith.
For full row select , the style LVS_EX_FULLROWSELECT will do |
Forum: C++ Feb 15th, 2008 |
| Replies: 11 Views: 1,477 Hi i hope SQLite will solve your problem.
SQLite is a in-process library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine. The code for SQLite is... |
Forum: C++ Feb 14th, 2008 |
| Replies: 2 Views: 502 Refer this http://www.daniweb.com/forums/thread31665.html
else try this one :
mode con cols=80 lines=25
it doesn't make it full screen,but varing cols will do . |
Forum: C++ Dec 21st, 2007 |
| Replies: 7 Views: 1,307 a ) CString to int :
CString csNumber = "3";
int x;
x = atoi(csNumber); //defined in <cstdlib>
b) int to CString
int x = 23; |