btpoole
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2015
08:52 AM
Screen Keyboard
Is there a way to create only the number part of the keyboard on the screen? I have app where user can enter info which will be only numbers, currently large full keyboard is being used but would like to only have number pad come up.
Thanks
Thanks
2 REPLIES 2

hugetv
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2015
10:04 AM
Re: Screen Keyboard
port = CreateObject("roMessagePort")
screen = CreateObject("roPinEntryDialog")
screen.SetMessagePort(port)
screen.SetTitle("Please enter your PIN to access")
screen.SetNumPinEntryFields(4)
screen.AddButton(1, "OK")
screen.AddButton(2, "CANCEL")
screen.Show()
Our system http://www.rokumanager.com
btpoole
Channel Surfer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2015
10:30 AM
Re: Screen Keyboard
Thank you for the help. Exactly what I needed.