- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 12
- Posts with Upvotes
- 10
- Upvoting Members
- 8
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Student
- PC Specs
- MS Windows XP SP2 Intel P4 Prescott @ 3.2 Ghz 2.0 GB DDR NVIDIA GeForce 6200 LOL IT SUCKS
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); … | |
Re: 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!). | |
Re: 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 … | |
Re: 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. | |
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 … | |
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: | |
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 … | |
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. … | |
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 … | |
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. … | |
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? | |
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. | |
Re: 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 … | |
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. | |
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 … | |
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. … | |
Re: 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 … | |
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 … | |
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. | |
Re: 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. | |
Re: [url]http://sourceforge.net/project/showfiles.php?group_id=2435[/url] | |
Re: This is a very complex sort. There's pseudocode on Wikipedia [url]http://en.wikipedia.org/wiki/Heap_sort[/url]. | |
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 = … | |
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?:?: | |
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? | |
Re: Bubble sorts are very easy to make. Just Google "bubble sort algorithm". | |
Re: 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 … | |
Re: You could use a proxy that's in Turkey. Other than that, you can't just change your IP to a Turkish one. | |
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 … | |
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 … |