I would like to do something simple like copy some text from Pocket Word and
paste it into my pocket pc application's textbox. I am using c#.

Just a simple paste as in a windows textbox control.

Thank You,

Howard

Re: Textbox Paste from Pocket Word by Peter

Peter
Sun Oct 03 05:17:58 CDT 2004

You can use the Clipboard class in OpenNETCF's Smart Device Framework
(www.opennetcf.org/sdf/) to retrieve text from the clipboard. You can then
assign this to the Text property of your TextBox.

Peter

--
Peter Foot
Windows Embedded MVP
www.inthehand.com | www.opennetcf.org

Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups

"Howard Carpenter" <carpenter_howard@msn.com> wrote in message
news:eBjqKaSqEHA.3520@TK2MSFTNGP11.phx.gbl...
>I would like to do something simple like copy some text from Pocket Word
>and paste it into my pocket pc application's textbox. I am using c#.
>
> Just a simple paste as in a windows textbox control.
>
> Thank You,
>
> Howard
>



Re: Textbox Paste from Pocket Word by Howard

Howard
Sun Oct 03 06:46:59 CDT 2004

Peter,

My God, This is what the CF framework should have been. Microsoft will get
it next time around and I hope they look at your work and reward the
organization and major open source developers.

I am trusting it will all work, and I cannot thank you all enough. I am
really just dumbfounded.

Cheers,

Howard

"Peter Foot [MVP]" <feedback@no-spam.inthehand.com> wrote in message
news:%23jgzBJTqEHA.1988@TK2MSFTNGP09.phx.gbl...
> You can use the Clipboard class in OpenNETCF's Smart Device Framework
> (www.opennetcf.org/sdf/) to retrieve text from the clipboard. You can then
> assign this to the Text property of your TextBox.
>
> Peter
>
> --
> Peter Foot
> Windows Embedded MVP
> www.inthehand.com | www.opennetcf.org
>
> Do have an opinion on the effectiveness of Microsoft Windows Mobile and
> Embedded newsgroups? Let us know!
> https://www.windowsembeddedeval.com/community/newsgroups
>
> "Howard Carpenter" <carpenter_howard@msn.com> wrote in message
> news:eBjqKaSqEHA.3520@TK2MSFTNGP11.phx.gbl...
>>I would like to do something simple like copy some text from Pocket Word
>>and paste it into my pocket pc application's textbox. I am using c#.
>>
>> Just a simple paste as in a windows textbox control.
>>
>> Thank You,
>>
>> Howard
>>
>
>



Re: Textbox Paste from Pocket Word by Chris

Chris
Sun Oct 03 10:11:55 CDT 2004

Trusting that it will *all* work is probably unreasonable. :)

It should be 95% there though, and hey you've got the source if you fall
into the 5%. I think the clipboard is pretty tried and true.

-Chris


"Howard Carpenter" <carpenter_howard@msn.com> wrote in message
news:OCNLx6TqEHA.348@TK2MSFTNGP15.phx.gbl...
> Peter,
>
> My God, This is what the CF framework should have been. Microsoft will get
> it next time around and I hope they look at your work and reward the
> organization and major open source developers.
>
> I am trusting it will all work, and I cannot thank you all enough. I am
> really just dumbfounded.
>
> Cheers,
>
> Howard
>
> "Peter Foot [MVP]" <feedback@no-spam.inthehand.com> wrote in message
> news:%23jgzBJTqEHA.1988@TK2MSFTNGP09.phx.gbl...
> > You can use the Clipboard class in OpenNETCF's Smart Device Framework
> > (www.opennetcf.org/sdf/) to retrieve text from the clipboard. You can
then
> > assign this to the Text property of your TextBox.
> >
> > Peter
> >
> > --
> > Peter Foot
> > Windows Embedded MVP
> > www.inthehand.com | www.opennetcf.org
> >
> > Do have an opinion on the effectiveness of Microsoft Windows Mobile and
> > Embedded newsgroups? Let us know!
> > https://www.windowsembeddedeval.com/community/newsgroups
> >
> > "Howard Carpenter" <carpenter_howard@msn.com> wrote in message
> > news:eBjqKaSqEHA.3520@TK2MSFTNGP11.phx.gbl...
> >>I would like to do something simple like copy some text from Pocket Word
> >>and paste it into my pocket pc application's textbox. I am using c#.
> >>
> >> Just a simple paste as in a windows textbox control.
> >>
> >> Thank You,
> >>
> >> Howard
> >>
> >
> >
>
>



Re: Textbox Paste from Pocket Word by Peter

Peter
Sun Oct 03 11:54:26 CDT 2004

Glad you find it useful. Another option also in the SDF is to use the
TextBoxEx class instead of a regular TextBox since this implements Cut, Copy
and Paste methods just like the desktop TextBox control. It doesn't
currently support using Ctrl-C etc shortcuts but this would be a nice
feature to add for a future version.

Peter

--
Peter Foot
Windows Embedded MVP
www.inthehand.com | www.opennetcf.org

Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups

"Howard Carpenter" <carpenter_howard@msn.com> wrote in message
news:OCNLx6TqEHA.348@TK2MSFTNGP15.phx.gbl...
> Peter,
>
> My God, This is what the CF framework should have been. Microsoft will get
> it next time around and I hope they look at your work and reward the
> organization and major open source developers.
>
> I am trusting it will all work, and I cannot thank you all enough. I am
> really just dumbfounded.
>
> Cheers,
>
> Howard
>
> "Peter Foot [MVP]" <feedback@no-spam.inthehand.com> wrote in message
> news:%23jgzBJTqEHA.1988@TK2MSFTNGP09.phx.gbl...
>> You can use the Clipboard class in OpenNETCF's Smart Device Framework
>> (www.opennetcf.org/sdf/) to retrieve text from the clipboard. You can
>> then assign this to the Text property of your TextBox.
>>
>> Peter
>>
>> --
>> Peter Foot
>> Windows Embedded MVP
>> www.inthehand.com | www.opennetcf.org
>>
>> Do have an opinion on the effectiveness of Microsoft Windows Mobile and
>> Embedded newsgroups? Let us know!
>> https://www.windowsembeddedeval.com/community/newsgroups
>>
>> "Howard Carpenter" <carpenter_howard@msn.com> wrote in message
>> news:eBjqKaSqEHA.3520@TK2MSFTNGP11.phx.gbl...
>>>I would like to do something simple like copy some text from Pocket Word
>>>and paste it into my pocket pc application's textbox. I am using c#.
>>>
>>> Just a simple paste as in a windows textbox control.
>>>
>>> Thank You,
>>>
>>> Howard
>>>
>>
>>
>
>