Posts
 
Reputation
Joined
Last Seen
Ranked #247
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
94% Quality Score
Upvotes Received
25
Posts with Upvotes
17
Upvoting Members
14
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
7 Commented Posts
0 Endorsements
Ranked #2K
~23.7K People Reached
Interests
Chess, Powerlifting.
Favorite Forums
Favorite Tags
Member Avatar for William Hemsworth

You should not execute any code of yours if the nCode parameter passed to your hook procedure is less than zero (actually it should be equal to HC_ACTION, which is defined as zero in WinUser.h).

Member Avatar for Uchenna_1
0
9K
Member Avatar for MareoRaft

int main(int argc, char** argv) is better than int main(), because with the former one, your program can analyse the command line parameters passed to it. The number of argument passed is available in the argc parameter, and the arguments themselves can be accessed by the accessing the argv parameter. …

Member Avatar for Raphaelnad
0
453
Member Avatar for jeffpro

[QUOTE=Ancient Dragon;1577925] 2. Probably uses [URL="http://msdn.microsoft.com/en-us/library/ms632589(v=vs.85).aspx"]windows hook[/URL]s to capture keyboard events.[/QUOTE] The CTRL+ALT+DEL key combination is SAS (Secure attention sequence), and will not be delivered to hooks. Even if it were not SAS, it's the OS that draws the screen when that key combination is pressed, and the OS does …

Member Avatar for jeffpro
0
192
Member Avatar for fire_

If you're using MFC, then the window handle is already stored in a data member of the CWnd class known as m_hWnd. So, m_hWnd is all you need: [url]http://msdn.microsoft.com/en-us/library/zwdbkfhc%28VS.80%29.aspx[/url]

Member Avatar for Rajesh R Subram
0
94
Member Avatar for malvi

What array in MFC? MFC has many array types (string array, word array, etc.,). See the MFC collections here: [URL="http://msdn.microsoft.com/en-us/library/942860sh%28v=VS.80%29.aspx"]http://msdn.microsoft.com/en-us/library/942860sh%28v=VS.80%29.aspx[/URL]

Member Avatar for Rajesh R Subram
0
108
Member Avatar for epicasian

If your code doesn't work within the IDE, there's no question of shipping it ever. The debugger does you a huge favour by watching what you're doing with the memory and tells you when your code does something insane (like stomping on memory that it doesn't own). Single stepping should …

Member Avatar for Rajesh R Subram
0
468
Member Avatar for Martje
Member Avatar for dwhvw

[QUOTE=Ancient Dragon;1241210]If you are writing a MS-Windows GUI program then you might be able to call SendThreadMessage().[/QUOTE] There's no such thing as SendThreadMessage(). You were probably referring to PostThreadMessage(), but that would be an option only if the thread that you need to communicate to has a message pump, and …

Member Avatar for Rajesh R Subram
0
2K
Member Avatar for albertkao

I don't see what can you save by squeezing out anything from that tiny bit of code shown. Take a look at this: [URL="http://www.flounder.com/optimization.htm"]Optimization: your worst enemy[/URL], which might clear up a few things for you.

Member Avatar for Rajesh R Subram
0
106
Member Avatar for D4n1sD

The name of an already running process cannot be changed dynamically. You cannot "hide" your process from the list of processes shown in task manager. Something highly esoteric like kernel patching can be done, but if you didn't know even that much, chances are that you aren't going to do …

Member Avatar for Rajesh R Subram
0
99
Member Avatar for np2100

If you were hosting the website on a Windows server, you could have the core of your application written with c++ as an ISAPI DLL, and it could be loaded by IIS. Please search google for ISAPI filter.

Member Avatar for Rajesh R Subram
0
155
Member Avatar for pradeey

[QUOTE=pradeey;1105694]chk this piece of code [CODE]#include<iostream.h> using namespace std; class hi { public: void print() { cout<<"hi"; } }obj; int main() { hi *h; h->print(); } [/CODE] output---> hi [/QUOTE] This method has the "advantage" of crashing the whole program because you're trying to use an uninitialised pointer.

Member Avatar for Rajesh R Subram
0
128
Member Avatar for Violet_82

Just include the precompiled header (stdafx.h) in all the source files before including any other headers. The precompiled header option can come very handy if you've a boatload of headers that you aren't going to change, so that it won't need to be built with every compilation!

Member Avatar for Violet_82
0
183
Member Avatar for cwarn23
Member Avatar for cwarn23
0
139
Member Avatar for Hawkpath

[QUOTE=Hawkpath;1105489]Hi, I'm just learning win32 and i wanna know: is it really necessary that i memorize all of the syntax. Is that what professionals do? Or can I just copy and paste it every time and just know what it does. Thanks, Hawkpath[/QUOTE] Syntax of what? As you go on …

Member Avatar for Rajesh R Subram
0
157
Member Avatar for aszopinski

Use the _T macro, which will automatically convert literal strings to the appropriate type (Unicode or MBCS), based on the build type. In short, a good thing to do: Always enclose literal strings in the program within the _T macro. For example: [CODE]SomeAPICall(_T("Some literal string"));[/CODE] See [URL="http://msdn.microsoft.com/en-us/library/dybsewaf(VS.80).aspx"]Unicode Programming Summary[/URL].

Member Avatar for Rajesh R Subram
0
178
Member Avatar for V0ldemort

Cast the void pointer to the appropriate type and use it. See [URL="http://www.cplusplus.com/doc/tutorial/typecasting/"]Type Casting[/URL].

Member Avatar for Rajesh R Subram
0
93
Member Avatar for King Dede

There's no one such best c++ compiler. "Best" depends on what you're looking for in the compiler. I do a whole lot of c++ programming on Windows, and for me, the Visual C++ compiler is the best.

Member Avatar for Stefano Mtangoo
0
301
Member Avatar for Nikhar

[QUOTE=Nikhar;1102931]Hi... I'm trying to study graphs but I cant find a good tutorial on it. I googled it, but couldn't find what I needed. Can you please suggest me a good tutorial on graphs in c++. I am basically looking for how a graph class is implemented in c++, an …

Member Avatar for Nikhar
0
135
Member Avatar for kenoch

[QUOTE=kenoch;1102743]I have a problem with this topic ..Solution to algorithm using static and dynamic data structure[/QUOTE] Is google down where you're living? Thankfully, it's up and running here, so here's the first link it returned: [URL="http://en.wikipedia.org/wiki/Static_and_dynamic_data_structures"]http://en.wikipedia.org/wiki/Static_and_dynamic_data_structures[/URL]

Member Avatar for Rajesh R Subram
-2
94
Member Avatar for Silvershaft

[QUOTE=Ancient Dragon;1091497] When compiling with _UNICODE the _T macro converts char* to wchar_t*. When NOT compiling for _UNICODE the _T macro does nothing.[/QUOTE] This is wrong. The _T macro will actually convert a TCHAR to wchar_t (2 bytes) or to a char (single byte), based on the build (Unicode or …

Member Avatar for Rajesh R Subram
0
1K
Member Avatar for kawal.singh

You could use one of those open source compression libraries. Last time I needed compression, I used the [URL="http://www.7-zip.org/sdk.html"]LZMA SDK[/URL]. And with encryption, you haven't specified what sort of encryption are you looking for. The strongest known encryption is [URL="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard"]AES[/URL]. There are a few C++ implementations of the said encryption …

Member Avatar for Rajesh R Subram
0
179
Member Avatar for KaZu88

[QUOTE=KaZu88;1088440] Detected memory leaks! Dumping objects -> {117} normal block at 0x003960E0, 40 bytes long. Data: < > CD CD CD CD CD CD CD CD CD CD CD CD CD CD CD CD Object dump complete.[/QUOTE] That dump is not very helpful, don't you think? As a first step, …

Member Avatar for Lerner
0
152
Member Avatar for ge6a93

Probably [URL="http://msdn.microsoft.com/en-us/library/ms646299(VS.85).aspx"]GetKeyboardState()[/URL] could be of help to you.

Member Avatar for Rajesh R Subram
0
117
Member Avatar for rahul8590

[QUOTE=rahul8590;1087949]i DO have searched the google to do multithreaded programming using c++ and found there were few like the ones supported in BOOST libraries and zthreads .. I would be glad if u guys could help me in suggesting much better ways in doing so .[/QUOTE] Hi, Firstly, wait! Do …

Member Avatar for rahul8590
1
740
Member Avatar for Ancient Dragon

Sweet, but there's an unused std::string declared in the main. OK, I'm being a nitpick. :)

Member Avatar for Ancient Dragon
5
4K
Member Avatar for laelzio.mosca

[QUOTE=laelzio.mosca;1088566]I finished my tic tac toe game program, I`d like to know if anyone can tell me what I need to do in order to send the .exe file to someone and make it so the file executes without problems. Thanks guys[/QUOTE] That depends on what and how you used …

Member Avatar for laelzio.mosca
0
108
Member Avatar for packrisamy

Could probably be a bug with the compiler. I can't think of anything else. I'm running on VS 2008 and I get consistent result for both builds as 20.

Member Avatar for Rajesh R Subram
0
139
Member Avatar for abbel

[QUOTE=abbel;1088198]I need an encryption code for a text[/QUOTE] I need a Mocha blast, a blueberry pie (preferably with a hint of cinnamon) and a nice massage by a beautiful woman. I think we both aren't going to get what we want. But more seriously, if you [URL="http://www.google.co.in/search?q=AES+encryption"]search the internet[/URL], you …

Member Avatar for Rajesh R Subram
-3
91
Member Avatar for bhas_purk

Hi, The return value is zero, because the size of the folder itself is zero. If you need to find the size of all the contents within a directory, that's a different problem to solve. I realise the documentation for GetFileSize() could have been a little more helpful stating how …

Member Avatar for Rajesh R Subram
0
142