Click here to Skip to main content
15,921,840 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: unresolved external symbol Pin
led mike14-Jul-08 12:15
led mike14-Jul-08 12:15 
GeneralRe: unresolved external symbol Pin
AndreFratelli14-Jul-08 20:02
AndreFratelli14-Jul-08 20:02 
AnswerRe: unresolved external symbol Pin
Stephen Hewitt14-Jul-08 14:43
Stephen Hewitt14-Jul-08 14:43 
GeneralRe: unresolved external symbol Pin
AndreFratelli14-Jul-08 20:25
AndreFratelli14-Jul-08 20:25 
GeneralRe: unresolved external symbol Pin
Stephen Hewitt14-Jul-08 20:30
Stephen Hewitt14-Jul-08 20:30 
GeneralRe: unresolved external symbol Pin
AndreFratelli15-Jul-08 4:26
AndreFratelli15-Jul-08 4:26 
GeneralRe: unresolved external symbol Pin
Alan Balkany15-Jul-08 4:21
Alan Balkany15-Jul-08 4:21 
GeneralRe: unresolved external symbol Pin
AndreFratelli15-Jul-08 4:29
AndreFratelli15-Jul-08 4:29 
QuestionCfile write problem [modified] Pin
aei_totten14-Jul-08 8:24
aei_totten14-Jul-08 8:24 
QuestionRe: Cfile write problem Pin
David Crow14-Jul-08 8:30
David Crow14-Jul-08 8:30 
AnswerRe: Cfile write problem Pin
aei_totten14-Jul-08 8:34
aei_totten14-Jul-08 8:34 
GeneralRe: Cfile write problem Pin
Cedric Moonen14-Jul-08 8:36
Cedric Moonen14-Jul-08 8:36 
GeneralRe: Cfile write problem Pin
aei_totten14-Jul-08 8:45
aei_totten14-Jul-08 8:45 
GeneralRe: Cfile write problem Pin
led mike14-Jul-08 8:57
led mike14-Jul-08 8:57 
GeneralRe: Cfile write problem Pin
Mark Salsbery14-Jul-08 9:29
Mark Salsbery14-Jul-08 9:29 
GeneralRe: Cfile write problem Pin
led mike14-Jul-08 9:54
led mike14-Jul-08 9:54 
GeneralRe: Cfile write problem Pin
Mark Salsbery14-Jul-08 9:57
Mark Salsbery14-Jul-08 9:57 
GeneralRe: Cfile write problem Pin
led mike14-Jul-08 11:16
led mike14-Jul-08 11:16 
GeneralRe: Cfile write problem Pin
aei_totten14-Jul-08 8:37
aei_totten14-Jul-08 8:37 
QuestionRe: Cfile write problem Pin
aei_totten14-Jul-08 9:27
aei_totten14-Jul-08 9:27 
GeneralRe: Cfile write problem Pin
aei_totten14-Jul-08 9:29
aei_totten14-Jul-08 9:29 
AnswerRe: Cfile write problem Pin
Mark Salsbery14-Jul-08 9:52
Mark Salsbery14-Jul-08 9:52 
GeneralRe: Cfile write problem Pin
aei_totten14-Jul-08 10:30
aei_totten14-Jul-08 10:30 
GeneralRe: Cfile write problem Pin
led mike14-Jul-08 11:11
led mike14-Jul-08 11:11 
QuestionHelp PenTable (Diy) Pressure data. Pin
motivinteractive14-Jul-08 6:58
motivinteractive14-Jul-08 6:58 
Hello everyone!

I have built a digital table with a pencil (like a wacom) and I'm doing my own drivers.
He managed to move the mouse through the following simple code [Visual C + + in XP]:

// press detected
INPUT aInput;
aInput.type = INPUT_MOUSE;
aInput.mi.dwFlags = MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE;
aInput.mi.dwExtraInfo = 0;
aInput.mi.mouseData = 0;
aInput.mi.time = 0;
aInput.mi.dx = (data.X * 65535.0f);
aInput.mi.dy = (data.Y * 65535.0f);
int aResult = SendInput(1, &aInput, sizeof(INPUT) );


But, I do not see how you can send to the system/software (Photoshop, paint ,...) data with the pressure of the pen to draw. I suppose that will be a standar, but nothing found information about it.

Someone known as is done? That object is used?

Thanks!!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.