Re: SendKeys under Windows Vista with VB3
- From: "Mike Williams" <mike@xxxxxxxxxxxxxxxxx>
- Date: Sat, 20 Oct 2007 19:53:44 +0100
"jvsp" <vinisanp@xxxxxxxxx> wrote in message news:EEE63F6C-8E48-4125-ACA4-27495B525B06@xxxxxxxxxxxxxxxx
I Would like simulate the command Below
when user press Enter Key
SendKeys "{TAB"}
It appears that you won't be able to use any API routines in Vista from VB3. I'm not sure what you are doing, but will the following be any help at all?
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
KeyAscii = 0
Text2.SetFocus
End If
End Sub
Mike
.
- References:
- Re: SendKeys under Windows Vista with VB3
- From: Mike Williams
- Re: SendKeys under Windows Vista with VB3
- From: jvsp
- Re: SendKeys under Windows Vista with VB3
- Prev by Date: Re: SendKeys under Windows Vista with VB3
- Next by Date: Re: VB6 LISTBOX problem
- Previous by thread: Re: SendKeys under Windows Vista with VB3
- Next by thread: Re: SendKeys under Windows Vista with VB3
- Index(es):
Relevant Pages
|