Windows Programming - November 2011 (Page 6)

Emulating human-like mouse movements
 
Does anyone know of an algorithm in which to do this? The WIN32 API just allows the cursor to jump to one part of the screen rather than move there like a hum...
[2 replies] Last: You would just add a certain amount to the x or y value depending on h... (by new hope)
Problem with WM_KEYDOWN
 
I'm new to C++ win32 programming and I'm having some problems when I try to execute the following code: keyPressed == true when w is pressed in the keyboard o...
[2 replies] Last: Solved my problem by introducing a time delay for every iteration of t... (by acdc123)
by Phiru
how to access all files including system..
 
Hi, i am working on a project to copy a file to the location of system32 folder. However, the program looks working but i don't think it works. First of all, ...
[2 replies] Last: Thanks webJose~!!!! (by Phiru)
by Phiru
waveOutGetPosition.. setPosition??
 
Hi. I am working on a project playing wav files. I am looking for a way to move audio file being played to another position. As i found, waveout has waveO...
[no replies]
I need help putting a "Credits" tab in my Form
 
As the title says, I need to know how to put a "Credits" or "About" tab in my Form, so people know that its from me. (I made a little Halo Reach Music Player wi...
[no replies]
Help with a c++ program
 
I was asked to do this program: Develop a program in C++ that displays the four compartments of a blueprint of a building, according to the input data. ...
[1 reply] : What have you done so far? Because we won't do your homework for you,... (by webJose)
by DSTR3A
Erasing Part Of A String
 
I'm trying to remove everything to the right of the first "/" including the "/". This is what I have so far. This is in Win7 in a C++ console program. std...
[2 replies] Last: Thank You. Works great. This is what I ended up with. std::wstr... (by DSTR3A)
Getting started with windows programming
 
I have a fair amount of experience with C++ in Linux. There I used g++, automake, or cmake to actually compile my programs. What is the analogue in Windows? I k...
[4 replies] Last: You are in a good position to learn Windows development RedScare. You... (by freddie1)
Problem retrieving object from a vector
 
Hello, I have two versions of a code which basically draws a "note" object in the screen. Code1: Note n1(string("Texture/note1.png"), 35, 1, 4); rendere...
[3 replies] Last: Since I am not too familiar with animation, it would be best for you t... (by webJose)
Unmanaged c++ project to managed
 
Hello all, i got a shared unmanaged c++ project and i need to migrate it to .net What is the best way of doing so ? The final result should be that i ...
[7 replies] Last: Write a managed interface class which calls through to the unmanaged c... (by andywestken)
Program ending too soon?
 
Hey, I've got a code that looks like this: while (End==false) { if (PeekMessage(&msg,NULL,0,0,PM_REMOVE)) { if (msg.message==WM_Q...
[2 replies] Last: It doesnt do it the first loop, my game plays perfectly for around 30 ... (by Calender Man)
by Fluidz
Changing String Characters
 
Hey guys, I am fairly new to C++ and I was wondering how I might go about converting strings such as: Mushrooms, into <Mu$hro0Mz!> or something very ob...
[6 replies] Last: You mean the tagged text? "How to use tags" http://www.cplusplus.com/... (by andywestken)
comparing file times
 
I'm trying do something if a file is 1 day older than the one that is just created(kinda gets the current time since the blank file is created right there) ...
[11 replies] Last: If you want to test if the file was created before today, whether it's... (by andywestken)
by rtfm
Check if value in registry exists doesn't work.
 
Hello! I'm trying to write to registry and check whether or not a value exists. The value does exist and the value is created by the program, but it doesn't ret...
[10 replies] Last: Ah, okay. Thank you, Andy. I'll keep that in mind. Thanks, webJose. I... (by rtfm)
Implementing a parental control system
 
hello, I am a student. I have to develop a parental control system to avoid children from visiting unnecessary websites, and logging their activities and block ...
[3 replies] Last: You mentioned NDIS = Network Driver Interface Specification. So I assu... (by andywestken)
by gwiz
Programming Windows Fifth Edition - Good or bad?
 
Hello! I'm trying to get into GUI and I'm having trouble finding the right resources. Right now, I'm reading "Programming Windows Fifth Edition" by Charl...
[5 replies] Last: You don't have to work through it cover to cover. The first couple ch... (by freddie1)
google search textbox1
 
I'm trying to make a program that will start after boot (in windows). I want to be able to type a phrase or whatever and it will navigate to google.com then ...
[3 replies] Last: If the user has entered the search string, you could use that to creat... (by andywestken)
by bolvo
Would someone please be so kind to help out a poor soul?
 
Hi guys, I need to start of by apologizing: I don't know the first thing about C++ programming. I have no idea how the language works or how to begin writing...
[4 replies] Last: If I am not mistaking, c++ does not require additional software to ru... (by andywestken)
How to get parameters from a dialog, after the dialog has closed?
 
Hi. Working with pure Win32 API here; I'm trying to create the following scenario: - From main window (or a dialog), call int result=DialogBox(...) - The use...
[2 replies] Last: Thank you for answering. So that's how it generally is done... I'll do... (by Ramses12)
by Nybble
Windows Processes enumaration with timer?
 
I have this program which enumerates processes and what I'm trying to do is have a timer to refresh the list, the timer works but I have two questions: 1. Th...
[9 replies] Last: What I'm doing is creating a list then adding the items to the list vi... (by Nybble)
November 2011 Pages: 1... 4567
  Archived months: [oct2011] [dec2011]

This is an archived page. To post a new message, go to the current page.