Posts
 
Reputation
Joined
Last Seen
Ranked #458
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
~38.6K 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

111 Posted Topics

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
541
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
341
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
901
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
300
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
671
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
168
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
192
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
197
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
191
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
101
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
103
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 tux4life
0
310
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
197
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
176
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
164
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
197
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
104
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
145
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
189
Member Avatar for rohit joshi
Member Avatar for jbennet
0
159
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
115
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
216
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
97
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
84
Member Avatar for Skorpion
Member Avatar for TheBeast32
0
152
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
160
Member Avatar for ItIsFinished
Member Avatar for TheBeast32
0
113
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
54
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
63
Member Avatar for TheBeast32

Hi, I'm going to install CrunchBang Linux on my 2GB pen drive. I was just wondering about the way it saves stuff. Do you have to back up and restore your data and settings every time you shutdown and boot like when using Damn Small Linux for everything to be …

Member Avatar for TheBeast32
0
192
Member Avatar for TheBeast32
Member Avatar for MosaicFuneral
0
56
Member Avatar for clutchkiller

I switched from Dev-C++ to Code::Blocks. No difference in compiler (I use MinGW), but I like the GUI a lot more than Dev's.

Member Avatar for TheBeast32
0
134
Member Avatar for TheBeast32

Hi, I was wondering how you would intercept data on a given port without interrupting it in WINSOCK. Like if computer A sent computer B "hi" on port 1337 and it was received on a server program. How could I listen for that data on computer B, but still let …

Member Avatar for TheBeast32
0
707
Member Avatar for TheBeast32

Hi, I'm thinking of getting a new CPU. Here it is on NewEgg: [url]http://www.newegg.com/Product/Product.aspx?Item=N82E16819116027[/url]. My motherboard is here:[url]http://www.dealtime.com/xPF-SIS661FX-PGA478-M-ATX-PRESCOTT[/url]. My question is: will my motherboard support this CPU? Thanks in advance.

Member Avatar for TheBeast32
0
134
Member Avatar for Leopold

You can also do: [Code=C++] #include <iostream> #include <conio.h> int main() { std::cout << "HELLO WORLD!!!!!!!111"; getch(); } [/Code]

Member Avatar for William Hemsworth
0
10K
Member Avatar for TheBeast32

Hi, I'm making a website. I want it to look professional. I don't want to use templates because I think of that as cheating. I want to be able to make one myself. Whenever I make a web page, it doesn't look very good. If anyone has any tips. Please …

Member Avatar for ccube921
0
122
Member Avatar for TheBeast32

Hi, I recently got 2 GB of DDR-SDRAM and an NVIDIA GeForce AGP graphics card. My processor is 2.5 Ghz (Uniprocessor), but I think it runs slow. At my school, there are uniprocessor pcs which run faster. They have less RAM and slower CPUs too. I don't know why this …

Member Avatar for jbennet
0
118
Member Avatar for TheBeast32

Hi, I just bought 2 GB of DDR-SDRAM and an e-GeForce 6200 graphics card (AGP) by NVIDIA. I bought a game (The Orange Box), installed Half-Life 2, and ran it. The graphics displayed perfectly and there was no lag there, but when the game started handling AI, gunfire, etc., it …

Member Avatar for TheBeast32
0
89
Member Avatar for Manutebecker
Member Avatar for kjiu

It compiles fine with Code::Blocks and MinGW. You have to link with libwinmm.a if you have MinGW or winmm.lib for anything else.

Member Avatar for TheBeast32
0
83
Member Avatar for TheBeast32

Hi, is there a socket library [B]besides WINSOCK[/B] that I can use with Dev-C++. I don't have a <sys\socket.h> include. Is there a devpak that I can get, or am I doomed to WINSOCK?

Member Avatar for TheBeast32
0
97
Member Avatar for TheBeast32

Hi, I'm using WinSock, and am making a function to receive data. How can I know when I have reached the end of the data that I'm receiving. Like, if I send "GET /" to [url]www.google.com[/url] on port 80, I should receive the HTML of the index page. But in …

Member Avatar for Salem
0
91
Member Avatar for TheBeast32

Hi, I have 490 MB of RAM, but in the task manager, while running firefox and some other stuff, it says i have 160 MB free physical memory, but it also says I'm using almost 500 MB of my swap file! How can I get Windows to utilize that extra …

Member Avatar for caperjack
0
183
Member Avatar for rtmarch

On this line: [Code=C++] int holdu, holdc, p, i,; [/Code] take out the comma after the i: [Code=C++] int holdu, holdc, p, i; [/Code]

Member Avatar for TheBeast32
0
125
Member Avatar for san_sarangkar

To export code as HTML, do File->Export->To HTML. If I interpreted your second question right, to write output from your program to an HTML file, just do some file I/O.

Member Avatar for TheBeast32
0
62
Member Avatar for TheBeast32

Hi, I was told that you can crash Windows in C++ or C by "corrupting the kernel", and I wanted to know if this was actually possible. If anyone knows if this is possible, or how it happens, please tell me. ;)

Member Avatar for William Hemsworth
0
181
Member Avatar for extrov

Hello is spelled without the w. =) Also, trigonometry is the way to go. You can probably find a tutorial or something: [url]www.google.com/search?q=Trigonometry+Tutorial[/url]

Member Avatar for extrov
0
172
Member Avatar for TheBeast32

Hi, I have put DSL (Damn Small Linux) onto my 256 MB pen drive to try and boot my computer with it. I can, but it says it can't find the KNOPPIX file system. I can boot it from Windows with QEMU, and it works fine. I have tried this …

0
34
Member Avatar for Nadescio

In [U]Beginning Game Programming[/U] by Michael Morrison, it tells how to get joystick input. Get it from the library or something.

Member Avatar for TheBeast32
0
103

The End.