Forum: C++ 33 Days Ago |
| Replies: 1 Views: 170 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: Networking Hardware Configuration Oct 2nd, 2009 |
| Replies: 4 Views: 405 Thanks mate . But i am not looking for a seperate hardware , i already invested $200 dollar in buying a NetGear router . Is there any software which can do this .. or The NetGear router does have... |
Forum: Networking Hardware Configuration Sep 30th, 2009 |
| Replies: 4 Views: 405 Hi Guys,
I live in a house where we have 8 laptops connecting to a single wireless router . I want to check how much of data each laptop is using everyday . We have Netgear router at home . Can... |
Forum: Java Oct 22nd, 2008 |
| Replies: 2 Views: 573 Hi
I have a LinkedList of class called Room. Now i want display elements that i stored in that class . i also implemented toString() in my Room class which returns string.
The code i tried is... |
Forum: C++ Oct 9th, 2008 |
| Replies: 2 Views: 523 yup! No doubt .. It will crash ..As ancient dragon said u have to put |
Forum: Java Sep 25th, 2008 |
| Replies: 4 Views: 1,937 Yes ..
it has to be simply
FYI :
Scanner is from - java.util.Scanner
A simple text scanner which can parse primitive types and strings using regular expressions. |
Forum: C++ Jul 9th, 2008 |
| Replies: 1 Views: 2,035 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: 1,932 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: 391 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,413 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: 485 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,312 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: 75,043 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: 75,043 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,279 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,465 " <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... |
Forum: Community Introductions Dec 21st, 2007 |
| Replies: 2 Views: 416 Hi All ...
#inlcude<stdio.h>
int main()
{
printf("Name : AASHATH KAAMIL");
printf("Profession : Software Engineer");
return 1 ;
} |
Forum: IT Professionals' Lounge Dec 20th, 2007 |
| Replies: 5 Views: 2,554 A programmer is nothing but a coder , He just codes accordingly to the specification or design . Whereas a developer developes the software/module from understanding the requirement, then design the... |