inclusive hay softwares como el everest que dicen CPUFAN xxxRPM
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
Me.WB.Document.Forms(0).tsch.Value = Text1.Text
Me.WB.Document.Forms(0).btnse.Click
Cita de: Karcrack en 14 Octubre 2009, 20:13 PM
Que tal si haces un plugin para el FF?
Seria mas practicoY tendrias mas control sobre el FF...
Cita de: castg en 13 Octubre 2009, 21:53 PM
En la misma pagina de el hacker se encuantra:
http://www.elhacker.net/trucosvisual.htmCitar
Ejecuta pausas durante un determinado espacio de tiempo en segundos:
Llamada: Espera(5)
Sub Espera(Segundos As Single)
Dim ComienzoSeg As Single
Dim FinSeg As Single
ComienzoSeg = Timer
FinSeg = ComienzoSeg + Segundos
Do While FinSeg > Timer
DoEvents
If ComienzoSeg > Timer Then
FinSeg = FinSeg - 24 * 60 * 60
End If
Loop
End Sub
Llamada: pause segundos
Sub Pause(interval)
Dim atime
atime = Timer
Do While Timer - atime < Val(interval)
DoEvents
Loop
End Sub
Muchas Gracias!
P.D: No conocia eso de "/trucosvisual.htm"
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Private Sub Command1_Click()
Sleep 1200
Text1.Text = "hola!"
Sleep 1233
Text1.Text = "jeje"
Sleep 1212
Text1.Text = "ÑÑÑ"
End Sub
Private Sub Command1_Click()
Text1.Text = "hola"
Text1.Text = "Como andas?"
Text1.Text = "Bien y vos?"
End Sub