Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #27.9K
Ranked #2K
~21.3K People Reached
Favorite Tags
Member Avatar for mrmonkee

[CODE]int num=0; while (word[x] != '\0') // While the string isn't at the end... { cout << int(word[x]); // Transform the char to int num+=int(word[x]) x++; } [/CODE]

Member Avatar for erim.aljerrah
0
20K
Member Avatar for francisabey

Here is an article which describes how to use windows clipboard using native Win32 functions. [URL="http://www.frostcode.info/common-articles/write-to-windows-clipboard.html"]Writing to Windows Clipboard[/URL]

Member Avatar for opcode
0
298
Member Avatar for Frederick2

CString class is actually not belong the MFC class library. It is in ATL. You can use appropriate ATL headers to use CString in any Windows C++ application. For more information on how you can use CString in a C++ project, read thease articles. [URL="http://www.frostcode.info/strings/string-classes.html"]string classes[/URL] How to use [URL="http://www.frostcode.info/strings/cstring-class.html"]CString[/URL]

Member Avatar for Frederick2
0
296
Member Avatar for krisny

You can use a CString to store the the path you get and use CString.Replace function to replace '' with '\' See [url]http://www.frostcode.info/strings_tutorial/cstring/index.php[/url] for more information on how to use CString

Member Avatar for krisny
0
295
Member Avatar for joshk6656

use c++ function, cin.getline here is an example [CODE] printf("enter your name: "); cin.getline (name,256);[/CODE]

Member Avatar for joshk6656
0
144
Member Avatar for scrypt3r

[QUOTE=scrypt3r;814192]I have a program that injects a MessageBox Dll into a running process, although the user has to input the process to injects PID, is there a way to get the process PID from its image?[/QUOTE] Try this article on [URL="http://www.frostcode.info/common_articles/get_PID_from_process_name/index.php"]How to get the PID from process name[/URL]

Member Avatar for William Hemsworth
0
159
Member Avatar for lahiruchandima

[URL="http://www.frostcode.info/common/get_PID/index.php"]http://www.frostcode.info/common/get_PID/index.php[/URL] Found this link on FrostCode

Member Avatar for lahiruchandima
0
390