Forum: C++ Oct 6th, 2009 |
| Replies: 1 Views: 185 HI guys
I am using STL map in one of my project . I want to limit my size of my STL map size based on the use input , how do i do it .
For Example : if the user types in 5 as input then my... |
Forum: C++ Oct 9th, 2008 |
| Replies: 2 Views: 554 yup! No doubt .. It will crash ..As ancient dragon said u have to put |
Forum: C++ Jul 9th, 2008 |
| Replies: 1 Views: 2,123 Could be little bit clear in explaining the error. i tried compiling your code and it works Perfect in my VC6.0 Compiler. |
Forum: C++ Jun 13th, 2008 |
| Replies: 3 Views: 2,053 I acknowledge the answer given my Mr.Rajith.
For full row select , the style LVS_EX_FULLROWSELECT will do |
Forum: C++ Apr 14th, 2008 |
| Replies: 1 Views: 404 Hi All,
This is regarding VC++ 6.0 compilation problem that i have faced .
I deleted my "Temp" folder and trying to compile my code , but VC++ doesnt allow me to compile my code without that... |
Forum: C++ Feb 15th, 2008 |
| Replies: 11 Views: 1,440 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: 496 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++ Jan 25th, 2008 |
| Replies: 2 Views: 1,383 I have implement a desktop lookup mechanism . Indexing and retrival works fine. But when a file is updated , created or deleted i would like to get the notifaction so that i can update my index . Is... |
Forum: C++ Dec 21st, 2007 |
| Replies: 54 Views: 77,712 C++ STL
Two Time saving Tips;
1. Try avoiding function call at the for loop condition check
Function calls are costlier . So in the above code , for every iteration,vector::size()... |
Forum: C++ Dec 21st, 2007 |
| Replies: 54 Views: 77,712 Referring to Mr.BountyX tips on time saving ,,
"I know this may not seem like a super time saving technique, but the way you name your variables will help save time and reduce compile time errors.."... |
Forum: C++ Dec 21st, 2007 |
| Replies: 7 Views: 1,300 a ) CString to int :
CString csNumber = "3";
int x;
x = atoi(csNumber); //defined in <cstdlib>
b) int to CString
int x = 23; |
Forum: C++ Dec 21st, 2007 |
| Replies: 9 Views: 1,524 " <cstring> aka <string.h> is not more recent. It is the old C string stuff."
Is that the CString thats available in MFC is also the same the old C string stuff. Is Microsoft reinvented the wheel... |