No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
8 Posted Topics
Hello, I am writing a c++ program for windows using the API. My program needs to be able to get some text from the clipboard, import it to the program's scope as a string, and do work on the string. [what I have tried] [code] cout << GetClipboardData(CF_TEXT) << endl; … | |
DLL Global Object Constructor String Error Hello, This one has really got my head spinning. I cannot figure it out. I have a c++ console application that loads a dll. In that dll there is a global variable that is a user defined object. Upon the dll being loaded the … | |
Hooked Procedure Early Return In/External Trigger Hello, I've hooked into an application succesfully using WH_CALLWNDPROCRET or WH_CALLWNDPROC both give the same issue detailed below. In the hooked callback function I trigger my code by waiting for a spceific window message. Once the hooked callback function receives this message, my code … | |
Hello, Sorry if this is a basic basic question. I am familiar with doing console projects, but I am trying to do a gui project and the rules just don't seem to be the same. I have two basic questions. 1) Why can I not include fstream and/or string headers … | |
Re: alex, disclaimer_1: I did not even look at the code. disclaimer_2: I think your main question is, "how do i solve the system of equations programmatically" Have you considered using matrices? You are not the first to try and solve (with a computer) a system of equations. In fact, there … | |
Hello, I am trying to get the properties of a Microsoft's Notepad.exe window. I have an instance of this application running when I execute the code below. [CODE] #include <iostream> #include <windows.h> using namespace std; BOOL CALLBACK PropEnumProcEx(HWND hwnd, LPTSTR lpszString, HANDLE hData, ULONG_PTR dwData) { cout << "Property Label: … | |
Hello, I am trying to read text from a third party's application, of which I do not have the source code. I am using c++ and I am trying to stick to the windows API. I am relatively new to windows programming, though I have looked through MSDN and google … | |
Hello, I am a PHP programmer, trying to transition to C++. I need C++ to communicate with MySQL, so I realize i need to have mysql++ libraries. I am using winXP. I have MinGW. I am just trying to install MySQL++, and I am having problems. I have been following … |
The End.