Bassam Abdul-Baki wrote:
prefer ZipGenius[^] which is free.
A little too ingenious for my taste. :~
Bassam Abdul-Baki wrote:
prefer ZipGenius[^] which is free.
A little too ingenious for my taste. :~
Jörgen Sigvardsson wrote:
for(int i = 0; i < str.GetLength(); i++) if(str[i] < '0' || str[i] > '9') return false;
Doesn't work with eg. CString str="0x1142654";
_AnShUmAn_ wrote:
if(str.GetLength ()==str1.GetLength ())
Doesn't work with eg. CString str="0x1142654";
sarojkumarjena wrote:
What the copy constructor is doing we can do the same thing through assignment operator.So what is the advantage of copy constructor
The assignment operator destroys/replaces an existing object. The copy constructor creates an object as copy of another object.
stanlymt wrote:
This solution won't work for me because I won't be able to keep track of all spawned windows/applications. Spawned application say MS SQL query analyzer is not created by me. So, that application may spawn other applications.
You are doomed!
_AnShUmAn_ wrote:
This will only draw a line.
Let's say a very smooth curve! :laugh:
Mike Dimmick wrote:
Because C99 is a solution looking for a problem. Virtually all new types in C99 are already in C++ as standard libraries.
It helps to take at least a faint look at the C99 Standard before answering. :suss:
George B Gilbert wrote:
As a contributing author, I would find it informative to see how many times the downloads available with each article are downloaded. Is that information currently available somewhere? I haven't found it yet.
This is a FRF (Frequently Requested Feature) ;)
gyzmau wrote:
Is there a better way, maybe something else than ATL?
You can find many places with Base64 code on the internet, e.g. http://www.ruffboy.com/download.htm[^]
WhiteSky wrote:
("c:\\WINDOWS\\Notepad.exe",NULL,NULL,NULL,NULL,CREATE_NEW_CONSOLE,NULL,NULL,&si,&pProcessInfo);
The Windows directory should not be hard coded.
Anil_vvs wrote:
Can anyone tell me if a vector automatically sorts all its string entries in alphabetical order?
Try std::set
instead of std::vector
derek7 wrote:
if a .h file contain many lib declaration.and no source . how to locate a function ?
Use dumpbin
Oracle's Ellison "We are moving aggressively into open source. We are embracing it. We are not going to fight this trend. We think if we're clever, we can make it work to our advantage." http://www.businessweek.com/technology/content/feb2006/tc20060209_810527.htm?campaign_id=topStories_ssi_5[^] Can Oracle buy PHP? Can Oracle buy the PHP community? :suss:
manojk_batra wrote:
I have VC++ windows application. I want to use some javascript functions in the above mentioned application. If Yes, Please let me know how I can do it? with little bit sample code or some articles.
It's probably not simple to set it up, but anyway ... http://users.skynet.be/saw/SpiderMonkey.htm[^] http://egachine.berlios.de/embedding-sm-best-practice/embedding-sm-best-practice-index.html[^]
Google for 'RegCompare'
P Gibson wrote:
Any recommendations as to what to use, or any examples available would be most appreciated.
Go to the top of this page and type 'diff' into the Search field. ;)