on screen keybaord

S

steve a

Hi i have a touch screen keyboard within a form, which i would like to use to
input text into a combo form which is liked to fields in a table.
I am currently using

Private Sub cmdKeyW_Click()
lngCurPos = mlngSelStart
With Me.combo
.SetFocus
If CapLockOn = True Then
Me.combo = Me.combo & "W"
Else
Me.combo = Me.combo & "w"
End If
.SelStart = lngCurPos + 1
End With
lngLength = Len(Me.combo)
SetCurMoveOptions lngCurPos, lngLength
End Sub

But this doesn't bring down a drop down to pick from as when you use a
normal keyboard, what am i doing wrong?
Thanks
Steve
 
S

steve a

Thanks douglas,
I'm now encountering a different problem.
The drop down list only apperar for a very brief second.
any ideas?
many thanks
s
 
S

steve a

Thanks douglas.
I've got the drop down working ok now, but on looking at it, what i really
could do with is a filter as well, to filter the records as you type ( it is
for name entry with over 400 names)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top