Download the free trial version
Basic4android Video
Features
Tutorials and manuals
Showcase
Screenshots

Go Back   Android Development Forum - Basic4android > Basic4ppc (Windows Mobile) > Basic4ppc Wishlist
Documentation Wiki Register Members List B4P Search Today's Posts Mark Forums Read

Basic4ppc Wishlist Missing any feature?

TextBox Keypress

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-10-2010, 01:56 PM
Newbie
 
Join Date: May 2010
Posts: 2
Default TextBox Keypress

Hello, i am developping for a PDA from datalogic, model skorpio. The keys can send be in alpha upcase and alpha lowcase. I want to catch the key in a textbox and force it to be always in upcase. I do it by using the hardware.dll

Sub sCliche_KeyPress (key)
If Asc(key)=8 Then
Else If Asc(key)=13 Then
sClient.Focus
' here is the problem
' detect if the keyboard is in lowcase or upcase mode
Else If Asc(key) > 96 AND Asc(key) < 123 Then
' i am in lowcase, now ignore the key, send 160 for go to ucase mode, send the alpha value for ucase, send 160 for return in lowcase
sCliche.IgnoreKey
hd.keydown(160)
hd.KeyPress(Asc(key)-32)
hd.KeyUp(160)
end if
end sub

'I wish key would be send by reference, so i can change it immediatly
if asc(key) > 96 then Key=asc(key)-32

Jean-Marc

Last edited by orpailleur : 10-10-2010 at 09:39 PM. Reason: explain better
Reply With Quote
  #2 (permalink)  
Old 10-10-2010, 05:31 PM
klaus's Avatar
Basic4ppc Expert
 
Join Date: Oct 2007
Location: Fully, Switzerland
Posts: 4,463
Awards Showcase
Forum Contributer Beta Tester Competition Winner 
Total Awards: 3
Default

I don't understand exactly what you want to do.

But wouldn't this
Code:
<font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">Sub </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font face="Courier New"><font size="2">sCliche_KeyPress(key)</font></font>
</font></font><font face=
"Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"If </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">Asc</font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font face="Courier New"><font size="2">(key)=</font></font></font></font><font face="Courier New"><font size="2"><font color="#800080"><font face="Courier New"><font size="2"><font color="#800080"><font face="Courier New"><font size="2"><font color="#800080">8 </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">Then</font></font></font></font></font></font></font></font></font>
<font face=
"Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"Else </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">If </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">Asc</font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font face="Courier New"><font size="2">(key)<</font></font></font></font><font face="Courier New"><font size="2"><font color="#800080"><font face="Courier New"><font size="2"><font color="#800080"><font face="Courier New"><font size="2"><font color="#800080">48 </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">OR </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">Asc</font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font face="Courier New"><font size="2">(key)></font></font></font></font><font face="Courier New"><font size="2"><font color="#800080"><font face="Courier New"><font size="2"><font color="#800080"><font face="Courier New"><font size="2"><font color="#800080">57 </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">Then</font></font></font></font></font></font></font></font></font>
<font size=
"2"><font face="Courier New"><font size="2"><font face="Courier New">  sCliche.IgnoreKey</font></font>
</font></font><font face=
"Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"End </font></font></font></font></font></font></font></font></font><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff"><font face="Courier New"><font size="2"><font color="#0000ff">If</font></font></font>
<font size=
"2"><font face="Courier New"><font color="#0000ff">End Sub</font></font></font></font></font></font></font></font></font>
do what you need ?

Best regards.
__________________
Klaus
Switzerland

Beginner's Guide / User's Guide
Reply With Quote
  #3 (permalink)  
Old 10-10-2010, 09:24 PM
Newbie
 
Join Date: May 2010
Posts: 2
Default what i want

sorry, i modify my first message for better understanding. I will not only ignore the key, but replace the key pressed with an other value

Last edited by orpailleur : 10-10-2010 at 10:18 PM.
Reply With Quote
  #4 (permalink)  
Old 10-11-2010, 08:09 PM
specci48's Avatar
Basic4ppc Expert
 
Join Date: Apr 2007
Location: Germany
Posts: 1,057
Awards Showcase
Beta Tester Forum Contributer 
Total Awards: 2
Default

As I understand, you want a textbox which converts lower case characters to upper case automatically.

Maybe the attached sample is helpful for you.


specci48
Attached Files
File Type: sbp UpperCaseTextBox.sbp (862 Bytes, 29 views)
Reply With Quote
  #5 (permalink)  
Old 10-11-2010, 08:57 PM
klaus's Avatar
Basic4ppc Expert
 
Join Date: Oct 2007
Location: Fully, Switzerland
Posts: 4,463
Awards Showcase
Forum Contributer Beta Tester Competition Winner 
Total Awards: 3
Default

It can also be done with the Door library.
Attached the sample program.

Best regrds.
Attached Files
File Type: sbp UpperCase.sbp (799 Bytes, 30 views)
__________________
Klaus
Switzerland

Beginner's Guide / User's Guide
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Keypress Error ceaser Beta Versions 2 02-24-2010 07:28 PM
Keypress Error ceaser Beta Versions 0 02-24-2010 04:09 AM
Keypress for the pc kolbe Questions (Windows Mobile) 1 10-07-2009 03:51 PM
Catch Keypress??? tsteward Questions (Windows Mobile) 2 04-21-2009 08:41 PM
Keypress ceaser Questions (Windows Mobile) 2 05-28-2008 04:21 AM


All times are GMT. The time now is 02:27 PM.


Powered by vBulletin® Version 3.6.12
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0