|
-
May 25th, 1999, 05:17 PM
#1
Touch Screen
Does anybody know if it is possible to write code to make a monitor into a touch screen? If this is possible does anybody know any resources about this?
Thanks,
BryD
-
May 25th, 1999, 08:09 PM
#2
Re: Touch Screen
Override your main window's OnFingerDown() function and add code similar to the following:
void CMyMainWnd::OnFingerDown(UINT nFlags, CPoint point)
{
CMyMainWnd::OnLButtonDown(nFlags, point);
}
Just kidding! Touch screen monitors are equipped with special hardware and device drivers to use the hardware. If you have the hardware and you wish to write your own handler, then you will need assistance from your touch screen's hardware manufacturer.
-
May 25th, 1999, 08:30 PM
#3
Re: Touch Screen
How can i override OnFingerDown()?
i can't find that with ClassWizard.
Thanks.
-
May 25th, 1999, 10:33 PM
#4
Re: Touch Screen
I used to think that this forum was full of intelligent people, but now I know it is just a bunch of assholes. I have never dealt with a touch screen monitor, and I did not know what kind of drivers were associated with it, that is why I ask questions. I did not expect to get ridiculed for my unknowing. Thanks anyway.
-
May 25th, 1999, 10:58 PM
#5
Re: Touch Screen
That was meant as a joke not an insult, but my sincere apologies nevertheless.
-
May 26th, 1999, 01:20 AM
#6
Re: Touch Screen
Hi,
This forum is full of intelligent people -but that does not mean that we/they do not have a sense of humour.
The company I work for use Touchscreen monitors extensively.
It is best to buy a touchscreen monitor already made (rather than try an retrofit an existing standard monitor).
However expect to say a fair price markup.
Do an internet search on touchscreen or some similar word(s) and you should find quite a fair selection of companies who deal in this technology.
-
May 26th, 1999, 01:43 AM
#7
Re: Touch Screen
Hi,
I'm English beginner, maybe my english is little.
I coded for touch screen utility one years ago.
There are two way to make touch screen,
buying TFT LCD monitor + touch screen option, or installing touch screen film
to your monitor. Touch screen is connected to your mouse port.
Any way, some touch screen manufacturers supply open source codes,
drivers, utilities also.
Events in touch screen is same to those in mouse, so you can use
MFC Events such as WM_LBUTTONDBLCLK, WM_RBUTTONDOWN, so on.
Thanks.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|