No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: edit this part (InputRec.EventType == MOUSE_EVENT) to (InputRec.EventType == WM_LBUTTONDOWN) didn't try it, but it might work. | |
So I'm trying to simulate some mouse clicks using WM_LBUTTONDOWN, BN_CLICKED, and WM_LBUTTONUP i looked it up on the MSND site and all i got was [url]http://msdn.microsoft.com/en-us/library/ms645607(VS.85).aspx[/url] which is not very helpful to me at this stage of my C++ knowledge. can someone help me out and tell me how … | |
Re: they let you run the program over and over again. a while loop is a loop where if the condition is met it will keep doing what inside the loop over and over again. a do while loop does whats inside then if a condition is met it does it … | |
Right now im making a converting program for myself. I got it to convert correctly but it only converts one character so here is my code [CODE]map<string,string>datamap; datamap["A#"]="b"; datamap["C"]="DD"; string change; getline(cin,change); for(int i=0; i<change.size(); i++) { //output based on what character gets passed to the map cout << datamap[string(change.begin() … |
The End.