On Screen Keyboard

  • Thread starter Thread starter DS
  • Start date Start date
D

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
 
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 said:
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
(e-mail address removed)
www.pcdatasheet.com
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
 
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 said:
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
(e-mail address removed)
www.pcdatasheet.com
Your the best!
Thanks
DS
 
DS said:
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 said:
Perhaps?

Me!NameOfMemoField = ""
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
 
Back
Top