Can they use the stylus to write into the forms of our
RIS (radiology information system) or would we have to do
some kind of copy and paste out of the journal.
Neal Schafer
David
"Neal Schafer" <nschafer_r...@manateediagnostic.com> wrote in message
news:045a01c2a51b$abf8e230$8df82ecf@TK2MSFTNGXA02...
>> Can text be recognized in any application, or only in
the
>> journal. I am contemplating buying tablet PC's to put
in
>> exam rooms in a radiology facility. The technologists
>> need to fill in forms in our information system such as
>> patient history, complaint, etc...
>>
>> Can they use the stylus to write into the forms of our
>> RIS (radiology information system) or would we have to
do
>> some kind of copy and paste out of the journal.
>>
>> Neal Schafer
>
>
>.
>
--
Please, all replies to the newsgroup.
Charlie Russel
Columnist, MVP and Associate Expert
Expert Zone -- http://www.microsoft.com/windowsxp/expertzone
------------------------------------------------------------
"Neal Schafer" <nschafer_r...@manateediagnostic.com> wrote in message
news:045a01c2a51b$abf8e230$8df82ecf@TK2MSFTNGXA02...
ken
>.
>
"Linnea" <rra...@aol.com> wrote in message
news:060101c2a5fd$64d206b0$cef82ecf@TK2MSFTNGXA08
> I have a situation where an application is accepting input
> from the pc input panel when in the keyboard mode but not
> in the writing pad mode. I am sending it in text mode and
> it is recognizing the characters but is still not getting
> into the application. Have you ever heard of this?
Ok... this sounded interesting so I did a little test... I suspect the
problem you describe is related to the way that the program is "listening"
for input.
As developers, there are several keyboard actions that we can choose to
react to. For example, let's look at the .NET TextBox control... the
TextBox control lets us respond to any combination of these events:
KeyDown
KeyPress
TextChanged
KeyUp
When you use a standard keyboard, the operating system notifies the program
of all 4 of these events (in that order). When you use the Tablet Input
Panel Keyboard, the exact same thing happens.
However, when you use the Tablet Input Panel Writing Pad, the operating
system only notifies the program of 2 of these events (in this order):
KeyPress
TextChanged
(Note to developers: the KeyPress event is raised *once per character* being
sent and then TextChanged is raised *once per character*. For example, if
you write "Hi" then this is the order of events raised: KeyPress, KeyPress,
TextChanged, TextChanged).
So what does this all mean? Programs that are written to only listen for
KeyDown and/or KeyUp events will not work with the Writing Pad. Contact the
software developer and ask them to change their algorithm to use the
KeyPress or TextChanged events instead.
On a related note, when you paste text into a textbox, only a single event
is raised: TextChanged.
--
Robert Levy
Microsoft MVP - Mobile Devices
--
Please, all replies to the newsgroup.
Charlie Russel
Columnist, MVP and Associate Expert
Expert Zone -- http://www.microsoft.com/windowsxp/expertzone
------------------------------------------------------------
"Linnea" <rra...@aol.com> wrote in message
news:064d01c2a5fc$29daec30$8df82ecf@TK2MSFTNGXA02...