|
tech
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
On Screen KeyboardAnyone 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 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 Naresh Nichani MVP wrote:
Show quote > Hi: Thanks, I'll give it a try....can one be builtin access using command > > 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 > > > buttons? I want to type memos into a memo control. Thanks DS 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 http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-news:2z0Td.2661$4K1.647@fe09.lga... > Naresh Nichani MVP wrote: > > Hi: > > > > This is a MS one - not sure if it will help you. > > 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 PC Datasheet wrote:
Show quote > Use labels instead of buttons and put the code in the click event of the Good Idea, but what kind of code would I need behind the Label to fill > 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 > > > this memofield. I just need A to Z a Spacebar, Backspace and Cancel. Thanks DS 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" -- Show quotePC Datasheet Your Resource For Help With Access, Excel And Word Applications resou***@pcdatasheet.com www.pcdatasheet.com "DS" <booty***@optonline.net> wrote in message http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-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. > >>> > > > > 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 PC Datasheet wrote:
Show quote > For A: Your the best!> 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 > > > Thanks DS DS wrote:
Show quote > PC Datasheet wrote: This is great! I can't beleive how easy you made it!!!! Almost done > >> 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 and it's working great! Just one more thing. How do you make a clear button? Thank You DS You can only clear what has not yet been saved.
For Clear: Me.Undo -- Show quotePC Datasheet Your Resource For Help With Access, Excel And Word Applications resou***@pcdatasheet.com www.pcdatasheet.com "DS" <booty***@optonline.net> wrote in message http://www.microsoft.com/downloads/details.aspx?familyid=86a21cba-e9f6-41db-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. > >>>>>> > >>>> > >>>> > >> 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 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 > > Dragon wrote:
Show quote > Perhaps? I tried me.Undo> > 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 >> >> > > Me!Memo.Undo They didn't work.. This works... Me!Memo.Value = "" Thank you, once again...I'm loving my new toy!!! DS |
|||||||||||||||||||||||