Home All Groups Group Topic Archive Search About
Author
23 Feb 2005 3:35 AM
DS
Anyone know wherte I can get an On Scree keyboard for Access.  I don't
want the Microsoft one.  Maybe something that I can customize. Does
anyone know how to build one?
Thanks
DS

Author
23 Feb 2005 6:52 AM
Naresh Nichani MVP
Hi:

This is a MS one - not sure if it will help you.
http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-86eb-2adfe407e620&displaylang=en

Regards,

Naresh Nichani
Microsoft Access MVP


Show quote
"DS" <booty***@optonline.net> wrote in message
news:pWSSd.1793$Uj3.1540@fe09.lga...
> Anyone know wherte I can get an On Scree keyboard for Access.  I don't
> want the Microsoft one.  Maybe something that I can customize. Does
> anyone know how to build one?
> Thanks
> DS
Author
23 Feb 2005 2:33 PM
DS
Naresh Nichani MVP wrote:
Show quote
> Hi:
>
> This is a MS one - not sure if it will help you.
> http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-86eb-2adfe407e620&displaylang=en
>
> Regards,
>
> Naresh Nichani
> Microsoft Access MVP
>
>
> "DS" <booty***@optonline.net> wrote in message
> news:pWSSd.1793$Uj3.1540@fe09.lga...
>
>>Anyone know wherte I can get an On Scree keyboard for Access.  I don't
>>want the Microsoft one.  Maybe something that I can customize. Does
>>anyone know how to build one?
>>Thanks
>>DS
>
>
>
Thanks, I'll give it a try....can one be builtin access using command
buttons?  I want to type memos into a memo control.
Thanks
DS
Author
23 Feb 2005 4:28 PM
PC Datasheet
Use labels instead of buttons and put the code in the click event of the
labels. There's more flexibilty to get the appearance you want with labels
than there is with buttons.

--
                                        PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
                              resou***@pcdatasheet.com
                                 www.pcdatasheet.com


"DS" <booty***@optonline.net> wrote in message
news:2z0Td.2661$4K1.647@fe09.lga...
> Naresh Nichani MVP wrote:
> > Hi:
> >
> > This is a MS one - not sure if it will help you.
> >
http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-
86eb-2adfe407e620&displaylang=en
Show quote
> >
> > Regards,
> >
> > Naresh Nichani
> > Microsoft Access MVP
> >
> >
> > "DS" <booty***@optonline.net> wrote in message
> > news:pWSSd.1793$Uj3.1540@fe09.lga...
> >
> >>Anyone know wherte I can get an On Scree keyboard for Access.  I don't
> >>want the Microsoft one.  Maybe something that I can customize. Does
> >>anyone know how to build one?
> >>Thanks
> >>DS
> >
> >
> >
> Thanks, I'll give it a try....can one be builtin access using command
> buttons?  I want to type memos into a memo control.
> Thanks
> DS
Author
23 Feb 2005 4:54 PM
DS
PC Datasheet wrote:

Show quote
> Use labels instead of buttons and put the code in the click event of the
> labels. There's more flexibilty to get the appearance you want with labels
> than there is with buttons.
>
> --
>                                         PC Datasheet
> Your Resource For Help With Access, Excel And Word Applications
>                               resou***@pcdatasheet.com
>                                  www.pcdatasheet.com
>
>
> "DS" <booty***@optonline.net> wrote in message
> news:2z0Td.2661$4K1.647@fe09.lga...
>
>>Naresh Nichani MVP wrote:
>>
>>>Hi:
>>>
>>>This is a MS one - not sure if it will help you.
>>>
>
> http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-
> 86eb-2adfe407e620&displaylang=en
>
>>>Regards,
>>>
>>>Naresh Nichani
>>>Microsoft Access MVP
>>>
>>>
>>>"DS" <booty***@optonline.net> wrote in message
>>>news:pWSSd.1793$Uj3.1540@fe09.lga...
>>>
>>>
>>>>Anyone know wherte I can get an On Scree keyboard for Access.  I don't
>>>>want the Microsoft one.  Maybe something that I can customize. Does
>>>>anyone know how to build one?
>>>>Thanks
>>>>DS
>>>
>>>
>>>
>>Thanks, I'll give it a try....can one be builtin access using command
>>buttons?  I want to type memos into a memo control.
>>Thanks
>>DS
>
>
>
Good Idea, but what kind of code would I need behind the Label to fill
this memofield.  I just need A to Z a Spacebar, Backspace and Cancel.
Thanks
DS
Author
23 Feb 2005 5:06 PM
PC Datasheet
For A:
Me!NameOfMemoField = Me!NameOfMemoField & "A"
Same for B to Z, just change A to appropriate letter.

For Spacebar:
Me!NameOfMemoField = Me!NameOfMemoField & " "

For Backspace:
Me!NameOfMemoField = Left(Me!NameOfMemoField,Len(Me!NameOfMemoField)-1)

For Cancel
DoCmd.Close acForm, "NameOfYourForm"

--
                                        PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
                              resou***@pcdatasheet.com
                                 www.pcdatasheet.com


Show quote
"DS" <booty***@optonline.net> wrote in message
news:MC2Td.2668$2%2.1609@fe09.lga...
> PC Datasheet wrote:
>
> > Use labels instead of buttons and put the code in the click event of the
> > labels. There's more flexibilty to get the appearance you want with
labels
> > than there is with buttons.
> >
> > --
> >                                         PC Datasheet
> > Your Resource For Help With Access, Excel And Word Applications
> >                               resou***@pcdatasheet.com
> >                                  www.pcdatasheet.com
> >
> >
> > "DS" <booty***@optonline.net> wrote in message
> > news:2z0Td.2661$4K1.647@fe09.lga...
> >
> >>Naresh Nichani MVP wrote:
> >>
> >>>Hi:
> >>>
> >>>This is a MS one - not sure if it will help you.
> >>>
> >
> >
http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-
Show quote
> > 86eb-2adfe407e620&displaylang=en
> >
> >>>Regards,
> >>>
> >>>Naresh Nichani
> >>>Microsoft Access MVP
> >>>
> >>>
> >>>"DS" <booty***@optonline.net> wrote in message
> >>>news:pWSSd.1793$Uj3.1540@fe09.lga...
> >>>
> >>>
> >>>>Anyone know wherte I can get an On Scree keyboard for Access.  I don't
> >>>>want the Microsoft one.  Maybe something that I can customize. Does
> >>>>anyone know how to build one?
> >>>>Thanks
> >>>>DS
> >>>
> >>>
> >>>
> >>Thanks, I'll give it a try....can one be builtin access using command
> >>buttons?  I want to type memos into a memo control.
> >>Thanks
> >>DS
> >
> >
> >
> Good Idea, but what kind of code would I need behind the Label to fill
> this memofield.  I just need A to Z a Spacebar, Backspace and Cancel.
> Thanks
> DS
Author
23 Feb 2005 6:51 PM
DS
PC Datasheet wrote:

Show quote
> For A:
> Me!NameOfMemoField = Me!NameOfMemoField & "A"
> Same for B to Z, just change A to appropriate letter.
>
> For Spacebar:
> Me!NameOfMemoField = Me!NameOfMemoField & " "
>
> For Backspace:
> Me!NameOfMemoField = Left(Me!NameOfMemoField,Len(Me!NameOfMemoField)-1)
>
> For Cancel
> DoCmd.Close acForm, "NameOfYourForm"
>
> --
>                                         PC Datasheet
> Your Resource For Help With Access, Excel And Word Applications
>                               resou***@pcdatasheet.com
>                                  www.pcdatasheet.com
>
>
> "DS" <booty***@optonline.net> wrote in message
> news:MC2Td.2668$2%2.1609@fe09.lga...
>
>>PC Datasheet wrote:
>>
>>
>>>Use labels instead of buttons and put the code in the click event of the
>>>labels. There's more flexibilty to get the appearance you want with
>
> labels
>
>>>than there is with buttons.
>>>
>>>--
>>>                                        PC Datasheet
>>>Your Resource For Help With Access, Excel And Word Applications
>>>                              resou***@pcdatasheet.com
>>>                                 www.pcdatasheet.com
>>>
>>>
>>>"DS" <booty***@optonline.net> wrote in message
>>>news:2z0Td.2661$4K1.647@fe09.lga...
>>>
>>>
>>>>Naresh Nichani MVP wrote:
>>>>
>>>>
>>>>>Hi:
>>>>>
>>>>>This is a MS one - not sure if it will help you.
>>>>>
>>>
>>>
> http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-
>
>>>86eb-2adfe407e620&displaylang=en
>>>
>>>
>>>>>Regards,
>>>>>
>>>>>Naresh Nichani
>>>>>Microsoft Access MVP
>>>>>
>>>>>
>>>>>"DS" <booty***@optonline.net> wrote in message
>>>>>news:pWSSd.1793$Uj3.1540@fe09.lga...
>>>>>
>>>>>
>>>>>
>>>>>>Anyone know wherte I can get an On Scree keyboard for Access.  I don't
>>>>>>want the Microsoft one.  Maybe something that I can customize. Does
>>>>>>anyone know how to build one?
>>>>>>Thanks
>>>>>>DS
>>>>>
>>>>>
>>>>>
>>>>Thanks, I'll give it a try....can one be builtin access using command
>>>>buttons?  I want to type memos into a memo control.
>>>>Thanks
>>>>DS
>>>
>>>
>>>
>>Good Idea, but what kind of code would I need behind the Label to fill
>>this memofield.  I just need A to Z a Spacebar, Backspace and Cancel.
>>Thanks
>>DS
>
>
>
Your the best!
Thanks
DS
Author
23 Feb 2005 7:24 PM
DS
DS wrote:
Show quote
> PC Datasheet wrote:
>
>> For A:
>> Me!NameOfMemoField = Me!NameOfMemoField & "A"
>> Same for B to Z, just change A to appropriate letter.
>>
>> For Spacebar:
>> Me!NameOfMemoField = Me!NameOfMemoField & " "
>>
>> For Backspace:
>> Me!NameOfMemoField = Left(Me!NameOfMemoField,Len(Me!NameOfMemoField)-1)
>>
>> For Cancel
>> DoCmd.Close acForm, "NameOfYourForm"
>>
>> --
>>                                         PC Datasheet
>> Your Resource For Help With Access, Excel And Word Applications
>>                               resou***@pcdatasheet.com
>>                                  www.pcdatasheet.com
>>
>>
>> "DS" <booty***@optonline.net> wrote in message
>> news:MC2Td.2668$2%2.1609@fe09.lga...
>>
>>> PC Datasheet wrote:
>>>
>>>
>>>> Use labels instead of buttons and put the code in the click event of
>>>> the
>>>> labels. There's more flexibilty to get the appearance you want with
>>
>>
>> labels
>>
>>>> than there is with buttons.
>>>>
>>>> --
>>>>                                        PC Datasheet
>>>> Your Resource For Help With Access, Excel And Word Applications
>>>>                              resou***@pcdatasheet.com
>>>>                                 www.pcdatasheet.com
>>>>
>>>>
>>>> "DS" <booty***@optonline.net> wrote in message
>>>> news:2z0Td.2661$4K1.647@fe09.lga...
>>>>
>>>>
>>>>> Naresh Nichani MVP wrote:
>>>>>
>>>>>
>>>>>> Hi:
>>>>>>
>>>>>> This is a MS one - not sure if it will help you.
>>>>>>
>>>>
>>>>
>> http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-
>>
>>
>>>> 86eb-2adfe407e620&displaylang=en
>>>>
>>>>
>>>>>> Regards,
>>>>>>
>>>>>> Naresh Nichani
>>>>>> Microsoft Access MVP
>>>>>>
>>>>>>
>>>>>> "DS" <booty***@optonline.net> wrote in message
>>>>>> news:pWSSd.1793$Uj3.1540@fe09.lga...
>>>>>>
>>>>>>
>>>>>>
>>>>>>> Anyone know wherte I can get an On Scree keyboard for Access.  I
>>>>>>> don't
>>>>>>> want the Microsoft one.  Maybe something that I can customize. Does
>>>>>>> anyone know how to build one?
>>>>>>> Thanks
>>>>>>> DS
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>> Thanks, I'll give it a try....can one be builtin access using command
>>>>> buttons?  I want to type memos into a memo control.
>>>>> Thanks
>>>>> DS
>>>>
>>>>
>>>>
>>>>
>>> Good Idea, but what kind of code would I need behind the Label to fill
>>> this memofield.  I just need A to Z a Spacebar, Backspace and Cancel.
>>> Thanks
>>> DS
>>
>>
>>
>>
> Your the best!
> Thanks
> DS

This is great!  I can't beleive how easy you made it!!!!  Almost done
and it's working great!  Just one more thing.  How do you make a clear
button?
Thank You
DS
Author
23 Feb 2005 8:07 PM
PC Datasheet
You can only clear what has not yet been saved.

For Clear:
Me.Undo


--
                                        PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
                              resou***@pcdatasheet.com
                                 www.pcdatasheet.com


Show quote
"DS" <booty***@optonline.net> wrote in message
news:KP4Td.2765$Hj4.1025@fe09.lga...
> DS wrote:
> > PC Datasheet wrote:
> >
> >> For A:
> >> Me!NameOfMemoField = Me!NameOfMemoField & "A"
> >> Same for B to Z, just change A to appropriate letter.
> >>
> >> For Spacebar:
> >> Me!NameOfMemoField = Me!NameOfMemoField & " "
> >>
> >> For Backspace:
> >> Me!NameOfMemoField = Left(Me!NameOfMemoField,Len(Me!NameOfMemoField)-1)
> >>
> >> For Cancel
> >> DoCmd.Close acForm, "NameOfYourForm"
> >>
> >> --
> >>                                         PC Datasheet
> >> Your Resource For Help With Access, Excel And Word Applications
> >>                               resou***@pcdatasheet.com
> >>                                  www.pcdatasheet.com
> >>
> >>
> >> "DS" <booty***@optonline.net> wrote in message
> >> news:MC2Td.2668$2%2.1609@fe09.lga...
> >>
> >>> PC Datasheet wrote:
> >>>
> >>>
> >>>> Use labels instead of buttons and put the code in the click event of
> >>>> the
> >>>> labels. There's more flexibilty to get the appearance you want with
> >>
> >>
> >> labels
> >>
> >>>> than there is with buttons.
> >>>>
> >>>> --
> >>>>                                        PC Datasheet
> >>>> Your Resource For Help With Access, Excel And Word Applications
> >>>>                              resou***@pcdatasheet.com
> >>>>                                 www.pcdatasheet.com
> >>>>
> >>>>
> >>>> "DS" <booty***@optonline.net> wrote in message
> >>>> news:2z0Td.2661$4K1.647@fe09.lga...
> >>>>
> >>>>
> >>>>> Naresh Nichani MVP wrote:
> >>>>>
> >>>>>
> >>>>>> Hi:
> >>>>>>
> >>>>>> This is a MS one - not sure if it will help you.
> >>>>>>
> >>>>
> >>>>
> >>
http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-
Show quote
> >>
> >>
> >>>> 86eb-2adfe407e620&displaylang=en
> >>>>
> >>>>
> >>>>>> Regards,
> >>>>>>
> >>>>>> Naresh Nichani
> >>>>>> Microsoft Access MVP
> >>>>>>
> >>>>>>
> >>>>>> "DS" <booty***@optonline.net> wrote in message
> >>>>>> news:pWSSd.1793$Uj3.1540@fe09.lga...
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>> Anyone know wherte I can get an On Scree keyboard for Access.  I
> >>>>>>> don't
> >>>>>>> want the Microsoft one.  Maybe something that I can customize.
Does
> >>>>>>> anyone know how to build one?
> >>>>>>> Thanks
> >>>>>>> DS
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>> Thanks, I'll give it a try....can one be builtin access using
command
> >>>>> buttons?  I want to type memos into a memo control.
> >>>>> Thanks
> >>>>> DS
> >>>>
> >>>>
> >>>>
> >>>>
> >>> Good Idea, but what kind of code would I need behind the Label to fill
> >>> this memofield.  I just need A to Z a Spacebar, Backspace and Cancel.
> >>> Thanks
> >>> DS
> >>
> >>
> >>
> >>
> > Your the best!
> > Thanks
> > DS
>
> This is great!  I can't beleive how easy you made it!!!!  Almost done
> and it's working great!  Just one more thing.  How do you make a clear
> button?
> Thank You
> DS
Author
23 Feb 2005 9:28 PM
Dragon
Perhaps?

Me!NameOfMemoField = ""


Show quote
"PC Datasheet" <nospam@nospam.spam> wrote in message
news:Hn5Td.9564$x53.5890@newsread3.news.atl.earthlink.net...
> You can only clear what has not yet been saved.
>
> For Clear:
> Me.Undo
>
>
> --
>                                        PC Datasheet
> Your Resource For Help With Access, Excel And Word Applications
>                              resou***@pcdatasheet.com
>                                 www.pcdatasheet.com
>
>
> "DS" <booty***@optonline.net> wrote in message
> news:KP4Td.2765$Hj4.1025@fe09.lga...
>> DS wrote:
>> > PC Datasheet wrote:
>> >
>> >> For A:
>> >> Me!NameOfMemoField = Me!NameOfMemoField & "A"
>> >> Same for B to Z, just change A to appropriate letter.
>> >>
>> >> For Spacebar:
>> >> Me!NameOfMemoField = Me!NameOfMemoField & " "
>> >>
>> >> For Backspace:
>> >> Me!NameOfMemoField =
>> >> Left(Me!NameOfMemoField,Len(Me!NameOfMemoField)-1)
>> >>
>> >> For Cancel
>> >> DoCmd.Close acForm, "NameOfYourForm"
>> >>
>> >> --
>> >>                                         PC Datasheet
>> >> Your Resource For Help With Access, Excel And Word Applications
>> >>                               resou***@pcdatasheet.com
>> >>                                  www.pcdatasheet.com
>> >>
>> >>
>> >> "DS" <booty***@optonline.net> wrote in message
>> >> news:MC2Td.2668$2%2.1609@fe09.lga...
>> >>
>> >>> PC Datasheet wrote:
>> >>>
>> >>>
>> >>>> Use labels instead of buttons and put the code in the click event of
>> >>>> the
>> >>>> labels. There's more flexibilty to get the appearance you want with
>> >>
>> >>
>> >> labels
>> >>
>> >>>> than there is with buttons.
>> >>>>
>> >>>> --
>> >>>>                                        PC Datasheet
>> >>>> Your Resource For Help With Access, Excel And Word Applications
>> >>>>                              resou***@pcdatasheet.com
>> >>>>                                 www.pcdatasheet.com
>> >>>>
>> >>>>
>> >>>> "DS" <booty***@optonline.net> wrote in message
>> >>>> news:2z0Td.2661$4K1.647@fe09.lga...
>> >>>>
>> >>>>
>> >>>>> Naresh Nichani MVP wrote:
>> >>>>>
>> >>>>>
>> >>>>>> Hi:
>> >>>>>>
>> >>>>>> This is a MS one - not sure if it will help you.
>> >>>>>>
>> >>>>
>> >>>>
>> >>
> http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-
>> >>
>> >>
>> >>>> 86eb-2adfe407e620&displaylang=en
>> >>>>
>> >>>>
>> >>>>>> Regards,
>> >>>>>>
>> >>>>>> Naresh Nichani
>> >>>>>> Microsoft Access MVP
>> >>>>>>
>> >>>>>>
>> >>>>>> "DS" <booty***@optonline.net> wrote in message
>> >>>>>> news:pWSSd.1793$Uj3.1540@fe09.lga...
>> >>>>>>
>> >>>>>>
>> >>>>>>
>> >>>>>>> Anyone know wherte I can get an On Scree keyboard for Access.  I
>> >>>>>>> don't
>> >>>>>>> want the Microsoft one.  Maybe something that I can customize.
> Does
>> >>>>>>> anyone know how to build one?
>> >>>>>>> Thanks
>> >>>>>>> DS
>> >>>>>>
>> >>>>>>
>> >>>>>>
>> >>>>>>
>> >>>>> Thanks, I'll give it a try....can one be builtin access using
> command
>> >>>>> buttons?  I want to type memos into a memo control.
>> >>>>> Thanks
>> >>>>> DS
>> >>>>
>> >>>>
>> >>>>
>> >>>>
>> >>> Good Idea, but what kind of code would I need behind the Label to
>> >>> fill
>> >>> this memofield.  I just need A to Z a Spacebar, Backspace and Cancel.
>> >>> Thanks
>> >>> DS
>> >>
>> >>
>> >>
>> >>
>> > Your the best!
>> > Thanks
>> > DS
>>
>> This is great!  I can't beleive how easy you made it!!!!  Almost done
>> and it's working great!  Just one more thing.  How do you make a clear
>> button?
>> Thank You
>> DS
>
>
Author
23 Feb 2005 9:40 PM
DS
Dragon wrote:
Show quote
> Perhaps?
>
> Me!NameOfMemoField = ""
>
>
> "PC Datasheet" <nospam@nospam.spam> wrote in message
> news:Hn5Td.9564$x53.5890@newsread3.news.atl.earthlink.net...
>
>>You can only clear what has not yet been saved.
>>
>>For Clear:
>>Me.Undo
>>
>>
>>--
>>                                       PC Datasheet
>>Your Resource For Help With Access, Excel And Word Applications
>>                             resou***@pcdatasheet.com
>>                                www.pcdatasheet.com
>>
>>
>>"DS" <booty***@optonline.net> wrote in message
>>news:KP4Td.2765$Hj4.1025@fe09.lga...
>>
>>>DS wrote:
>>>
>>>>PC Datasheet wrote:
>>>>
>>>>
>>>>>For A:
>>>>>Me!NameOfMemoField = Me!NameOfMemoField & "A"
>>>>>Same for B to Z, just change A to appropriate letter.
>>>>>
>>>>>For Spacebar:
>>>>>Me!NameOfMemoField = Me!NameOfMemoField & " "
>>>>>
>>>>>For Backspace:
>>>>>Me!NameOfMemoField =
>>>>>Left(Me!NameOfMemoField,Len(Me!NameOfMemoField)-1)
>>>>>
>>>>>For Cancel
>>>>>DoCmd.Close acForm, "NameOfYourForm"
>>>>>
>>>>>--
>>>>>                                        PC Datasheet
>>>>>Your Resource For Help With Access, Excel And Word Applications
>>>>>                              resou***@pcdatasheet.com
>>>>>                                 www.pcdatasheet.com
>>>>>
>>>>>
>>>>>"DS" <booty***@optonline.net> wrote in message
>>>>>news:MC2Td.2668$2%2.1609@fe09.lga...
>>>>>
>>>>>
>>>>>>PC Datasheet wrote:
>>>>>>
>>>>>>
>>>>>>
>>>>>>>Use labels instead of buttons and put the code in the click event of
>>>>>>>the
>>>>>>>labels. There's more flexibilty to get the appearance you want with
>>>>>
>>>>>
>>>>>labels
>>>>>
>>>>>
>>>>>>>than there is with buttons.
>>>>>>>
>>>>>>>--
>>>>>>>                                       PC Datasheet
>>>>>>>Your Resource For Help With Access, Excel And Word Applications
>>>>>>>                             resou***@pcdatasheet.com
>>>>>>>                                www.pcdatasheet.com
>>>>>>>
>>>>>>>
>>>>>>>"DS" <booty***@optonline.net> wrote in message
>>>>>>>news:2z0Td.2661$4K1.647@fe09.lga...
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>>Naresh Nichani MVP wrote:
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>>Hi:
>>>>>>>>>
>>>>>>>>>This is a MS one - not sure if it will help you.
>>>>>>>>>
>>>>>>>
>>>>>>>
>>http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-
>>
>>>>>
>>>>>>>86eb-2adfe407e620&displaylang=en
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>>>Regards,
>>>>>>>>>
>>>>>>>>>Naresh Nichani
>>>>>>>>>Microsoft Access MVP
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>"DS" <booty***@optonline.net> wrote in message
>>>>>>>>>news:pWSSd.1793$Uj3.1540@fe09.lga...
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>>Anyone know wherte I can get an On Scree keyboard for Access.  I
>>>>>>>>>>don't
>>>>>>>>>>want the Microsoft one.  Maybe something that I can customize.
>>
>>Does
>>
>>>>>>>>>>anyone know how to build one?
>>>>>>>>>>Thanks
>>>>>>>>>>DS
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>Thanks, I'll give it a try....can one be builtin access using
>>
>>command
>>
>>>>>>>>buttons?  I want to type memos into a memo control.
>>>>>>>>Thanks
>>>>>>>>DS
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>Good Idea, but what kind of code would I need behind the Label to
>>>>>>fill
>>>>>>this memofield.  I just need A to Z a Spacebar, Backspace and Cancel.
>>>>>>Thanks
>>>>>>DS
>>>>>
>>>>>
>>>>>
>>>>>
>>>>Your the best!
>>>>Thanks
>>>>DS
>>>
>>>This is great!  I can't beleive how easy you made it!!!!  Almost done
>>>and it's working great!  Just one more thing.  How do you make a clear
>>>button?
>>>Thank You
>>>DS
>>
>>
>
>
I tried        me.Undo
        Me!Memo.Undo

They didn't work..
This works...
        Me!Memo.Value = ""

Thank you, once again...I'm loving my new toy!!!
DS

AddThis Social Bookmark Button