September 28th, 2009 11:49 AM
I have a computer running XP Pro SP2.
When in "My Computer", the context menu for each drive now has default "Command Prompt here" instead of "Open". Double-click of a drive will open the command...
October 18th, 2007 01:41 PM
If your talking about a string reprsentation of an integer value, then you
would have this for a "112"
char myString[size];
myString[0] = 0x31 // "1"
myString[1] = 0x31 // "1"
myString[2]...
October 18th, 2007 01:30 PM
You seem to mixing your types.
Is this a string or an int?
112 decimal = 0x70
This takes only 1 byte of the 4 bytes for an int
array[0] = 0x70
array[1] = 0
array[2] = 0
array[3] = 0
October 18th, 2007 01:00 PM
Here's a cheap, bad, hack
memcpy((char*)array, (char*)codeguru, 2*sizeof(int))
Why do you want to refer to the data in bytes? Both are ints already.
No need to change to a different...
August 14th, 2007 04:18 PM
August 1st, 2007 09:52 AM
One goal to strive for is "readability"
Can you make sense of the code easily?
If the code is difficult to read, then something is probably wrong.
March 28th, 2007 04:40 PM
Zip the whole project and attach the zip file.
January 8th, 2007 04:05 PM
Is there a way to read the Desktop Heap usage using the WinAPI?
Desktop Heap Monitor (from MS) is not interactive.
I'm looking for a way to monitor the available heap natively - no external...
December 6th, 2006 04:07 PM
Post the code that you have.
State what the problems are with your code. Be as specific as possible.
(Use the code tags when you post the code to make it easier to read)
September 26th, 2006 03:01 PM
You might be running out of "Desktop Heap"
Here's a discussion on the Desktop Heap
MS Knowledgebase 126962
There is a utility to check the Desktop Heap at the following
MS DHeapMon
I...
September 13th, 2006 02:49 PM
post the project and we can stop guessing on what might be the cause.