Posts
 
Reputation
Joined
Last Seen
Ranked #457
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
90% Quality Score
Upvotes Received
12
Posts with Upvotes
10
Upvoting Members
8
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
9 Commented Posts
~37.1K People Reached
About Me

Student

PC Specs
MS Windows XP SP2 Intel P4 Prescott @ 3.2 Ghz 2.0 GB DDR NVIDIA GeForce 6200 LOL IT SUCKS
Member Avatar for TheBeast32

Hi, how would I use mouse_event to simulate the mouse wheel? I can only do clicks. [Code=C++] void Left_Click(const long x, const long y) { mouse_event(MOUSEEVENTF_LEFTDOWN, x, y, 0, 0); mouse_event(MOUSEEVENTF_LEFTUP,x,y,0,0); } void Right_Click(const long x, const long y) { mouse_event(MOUSEEVENTF_RIGHTDOWN, x, y, 0, 0); mouse_event(MOUSEEVENTF_RIGHTUP, x, y, 0, 0); …

Member Avatar for Oliver _2
1
518
Member Avatar for chug

If you have never deleted temporary files with a program like CCleaner, do it! I recently cleared files from a friend's computer. He had never done that. It made his computer much faster (he had like 2GB of temp files!).

Member Avatar for barbrafd1982
0
319
Member Avatar for hdan

Prabakar, a trainer is something that lets you cheat on games. They can give you like infinite money and health and stuff. hdan, to get a variables address in [B]your own[/B] program do this: [Code=C++] #include <iostream> #include <ostream> #include <ios> using namespace std; int main() { int n; n …

Member Avatar for chochang262
0
890
Member Avatar for anjaly grace

Do you need help with anything? If you're just posting this and don't need help, you could put it into the code snippets section.

Member Avatar for sim2
-1
296
Member Avatar for TheBeast32

Hi, I installed cygwin recently and wanted to do some network programming with it. Since I have never used unix sockets before, I'm reading Beej's Guide To Network Programming. I took this from section 5.1 and tried to compile it. I get a few errors that I can't figure out …

Member Avatar for developer_borja
0
653
Member Avatar for TheBeast32

Hi, I need a way to see if a mouse button is up or down, if the wheel is being used, and if so, which direction the wheel is moving using a hook or something like that. MSDN didn't help me much. Also, I'm using Dev-C++ 4.9.9.2.:yawn:

Member Avatar for nicsor
0
166
Member Avatar for TheBeast32

Hi, I'm making a little program that will send email. I am fine with the sockets, but I keep getting a segmentation fault and I don't know why:$. I'm trying to make a loop that will let the user enter the data for the email, ending with a '.' on …

Member Avatar for wildgoose
0
187
Member Avatar for TheBeast32

Hi, I just replaced my 2.4 Ghz Intel Celeron CPU with a P4 Prescott at 3.2 ghz like 2 hours ago. It idles at like 48 degrees Celsius. I played half-life 2 for a bit and it went up to like 60-62. I didn't put any thermal crap on it. …

Member Avatar for cbusen
0
194
Member Avatar for TheBeast32

Hi, I'm using GNU MP to get very precise square roots of numbers. I have three questions about my code below. [Code] #include <stdio.h> #include <stdlib.h> #include <gmp.h> int main(int argc, char *argv[]) { mpf_t num, sqrt; FILE *out; mpf_init2(num, 1000000); mpf_init2(sqrt, 1000000); printf("Enter a number to get its square …

Member Avatar for jephthah
0
181
Member Avatar for TheBeast32

Hi, I'm getting parts for a notebook I'm going to build. I want to do some gaming on it, so I need to know it has reasonable parts. I'm pretty sure the hardware is good for gaming, but I wanted to double check before I buy all of the parts. …

0
99
Member Avatar for TheBeast32

Hi, how would I get the temperature and percentage of load for my CPU, GPU, and other things like the hard drive? I'm on Windows XP. Is there something in the Win32 API or what?

Member Avatar for jephthah
0
3K
Member Avatar for TheBeast32

Hi, I was wondering if I got an Intel Core 2 Duo at 2.6ghz, is that 2.6ghz PER core (5.2 ghz total), or is it the total for all of the cores? Thanks in advance.

Member Avatar for TheBeast32
0
102
Member Avatar for hurbano

Change [Code=C++] if(AWUTD=='y'||'Y') { cout<<"Please Specify:"<<endl; getline (cin, AWUTDspecification); } else if (AWUTD=='n'||'N') { cout<<endl; } [/Code] to [Code=C++] if(AWUTD=='y'||AWUTD=='Y') { cout<<"Please Specify:"<<endl; getline (cin, AWUTDspecification); } else if (AWUTD=='n'||AWUTD=='N') { cout<<endl; } [/Code] I'm pretty sure that adding ||'Y' to your if means that if the ASCII code for …

Member Avatar for mvmalderen
0
205
Member Avatar for TheBeast32

Hi, I want to learn assembly and have looked at tutorials I found on google. It's really freaking complicated, so do any of you know of any good tutorials on assembly? I'm on Windows XP 32 bit with an Intel CPU.

Member Avatar for Narue
0
190
Member Avatar for TheBeast32

Hi, I'm building a gaming computer and wanted to know if my CPU and GPU are good enough for new games like bioshock and fallout 3. I was talking with a friend and he said that if I got what was new a little while ago, it'll still give me …

Member Avatar for Ali.Ayam
0
164
Member Avatar for TheBeast32

Hello, my friend's laptop got a very evil virus on it recently. I have scanned it with trend micro internet security multiple times as well as with SpyBot, but it won't die. This virus makes tons of popups appear while browsing. They're mostly ads for antivirus programs and other things. …

Member Avatar for chawkinson
0
146
Member Avatar for Xjmaslord4

Explorer.exe might have been deleted or just not started. Hit control+alt+del, go to file->New Task (Run...). Type in "explorer" without quotes. If it says "Windows cannot find 'explorer'", then it was deleted by the trojan. You might have to get an install disk to fix that... DO NOT DOWNLOAD PIRATED …

Member Avatar for TheBeast32
0
182
Member Avatar for TheBeast32

Hi, I'm reading the header from bitmaps. When I add up everything in a struct I've made, it comes out to 54 bytes. When I do a sizeof(BHeader), it says it's 56 bytes. It adds two null bytes after the B and the M when I save a header to …

Member Avatar for TheBeast32
0
99
Member Avatar for TheBeast32

Hi, I want to encrypt my pen drive. Are there any open source or freeware programs that I can use to do this? Being able to decrypt it on any computer running XP without installing any software would be nice. Thanks in advance.

Member Avatar for starfireone
0
138
Member Avatar for oldwolves

You might need more RAM. Do you know how much you have? If there isn't a lot, Windows will write to a page/swap file on the hard drive. This greatly reduces performance.

Member Avatar for oldwolves
0
181
Member Avatar for rohit joshi
Member Avatar for jbennet
0
155
Member Avatar for bhavya_talluri

This is a very complex sort. There's pseudocode on Wikipedia [url]http://en.wikipedia.org/wiki/Heap_sort[/url].

Member Avatar for abhishaki
0
112
Member Avatar for TheBeast32

Hi, I'm trying to use LogonUser. I think I'm doing everything right, but I keep getting this error: 1326 (ERROR_LOGON_FAILURE). I know my user and pass are right. [Code=C++] #include <stdlib.h> #include <stdio.h> #include <conio.h> #include <windows.h> void GetPassword(char *pass, int maxlen, char hidechar) { char ch; int len = …

Member Avatar for nucleon
0
211
Member Avatar for TheBeast32

Hi, whenever I play audio, and the output goes through my speakers, it GOES THROUGH MY MICROPHONE TOO. Like, when I play a song, I monitor the microphone input, and it says it has input when the song is playing. How can I fix this?:?:

Member Avatar for Suspishio
0
93
Member Avatar for TheBeast32

Hi, I was wondering if there was an alternative to the ShellExecute function of the Windows API; one that is universal on every OS. Is there one?

Member Avatar for death_oclock
0
78
Member Avatar for Skorpion
Member Avatar for TheBeast32
0
151
Member Avatar for JRM

I switched from Dev-C++ to Code::Blocks recently. The interface is awesome. I'm using the MinGW compiler, so there's no difference in compile time (they are using the same compiler). The only thing that I like about Dev-C++ that Code::Blocks doesn't have is DevPaks. They are REALLY easy to add to …

Member Avatar for TheBeast32
0
155
Member Avatar for ItIsFinished
Member Avatar for TheBeast32
0
93
Member Avatar for TheBeast32

Hi, I'm making a program that will get input from a user's microphone, send it to another user with a socket, and play it. It's like a VoIP thing. I can send data using a socket, but I have no idea how to get input from a microphone or play …

Member Avatar for nmaillet
0
53
Member Avatar for TheBeast32

Hi, I have a P4 Prescott @ 3.2 Ghz. I have an 80 mm case fan and my cpu fan is a Thermaltake TR2 M12 A4012-02. Is this enough for my CPU, or do I need some more fans? Also, there are vents on one side of my case if …

Member Avatar for TheBeast32
0
61