problemas con send key

Iniciado por POLLITOXD, 13 Agosto 2013, 17:03 PM

0 Miembros y 1 Visitante están viendo este tema.

POLLITOXD

quiero saber cual seria la funcion o code para que la simulacion de botones
se active en el block de notas

osea cuando le doy empezar al form en el block quiero que salga las
las letras que quiero yo 
pero en ves que salga letras me sale numeros ascii
bueno sino me explique bien dejo un video aveces
vale una imagen para poder comprender mejor

[youtube=640,360] http://www.youtube.com/watch?v=12PR52wF-Fw[/youtube]

aca dejo el ejemplo del proyecto : cree 2 comandos, 2 text , 2 timer

Código (vb) [Seleccionar]
Option Explicit
Private Declare Function GetKeyState Lib "user32" (ByVal nVirtKey As Long) As Integer

Private Sub Form_Load()
With Timer1
.Enabled = False
.Interval = 2000
End With
With Timer2
.Enabled = False
.Interval = 2000
End With
End Sub
Private Sub a()

    If Timer1.Enabled = False Then
        Timer1.Interval = CInt(Val(Text1.Text))
        Timer1.Enabled = True
        Command1.Caption = "Parar"
    Else
       Timer1.Enabled = False
       Command1.Caption = "Empezar"
    End If
End Sub

Private Sub s()
    If Timer2.Enabled = False Then
        Timer2.Interval = CInt(Val(Text2.Text))
        Timer2.Enabled = True
        Command2.Caption = "Parar"
    Else
       Timer2.Enabled = False
       Command2.Caption = "Empezar"
    End If
End Sub
Private Sub Command1_Click()
Call a
End Sub
Private Sub Command2_Click()
Call s
End Sub

Private Sub Timer1_Timer()
SendKeys (vbKeya)
End Sub
Private Sub Timer2_Timer()
SendKeys (vbKeys)
End SubE


Ojalas me `puedan ayudar por hay quise meter Chr$(KeyCode) pero
no se mucho de vb apenas toy empensando

DarkMatrix


Todo aquello que no se puede hacer, es lo que no intentamos hacer.
Projecto Ani-Dimension Digital Duel Masters (Juego de cartas masivo multijugador online hecho en Visual Basic 6.0)

Desing by DarkMatrix

Miseryk

SendMessage, SendInput, etc.
Can you see it?
The worst is over
The monsters in my head are scared of love
Fallen people listen up! It's never too late to change our luck
So, don't let them steal your light
Don't let them break your stride
There is light on the other side
And you'll see all the raindrops falling behind
Make it out tonight
it's a revolution

CL!!!