Código (vb) [Seleccionar]
Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Código (vb) [Seleccionar]
Private Sub Form_Load ()
Me.Show
Call Sleep (5000)
'Call Function
End Sub
DoEvents¡!
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úPrivate Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Private Sub Form_Load ()
Me.Show
Call Sleep (5000)
'Call Function
End Sub
Cita de: Shell Root en 11 Septiembre 2010, 05:01 AM+1
Sin duda, expresiones regulares...
Cita de: gaston93 en 11 Septiembre 2010, 15:26 PM-1
puedes usar tambien Instr y Replace...
Cita de: raul338 en 11 Septiembre 2010, 16:34 PM+0.5
http://foro.rthacker.net/programacion-visual-basic/(src)-(funcion)-text_between_words-(by-*psyke1*)/
o expresiones regulares, pero te va a costar
Cita de: ctlon en 6 Septiembre 2010, 12:35 PMOk gracias, investigare
las estructuras internas de cada juego son diferentes y la unica opcion que tienes es hacer ing inversa a los datos que contiene. tus coordenadas son unicas, solo tienes que buscar, moverte, buscar etc.
Option Explicit
Function Check_Web_Exists(ByVal sURL As String) As Boolean
Dim oXHTTP As Object
Set oXHTTP = CreateObject("MSXML2.XMLHTTP")
If Not UCase$(sURL) Like "HTTP:*" Then sURL = "http://" & sURL
On Error GoTo Error_
With oXHTTP
.Open "HEAD", sURL, False
.Send
If .Status = 200 Then Check_Web_Exists = True
End With
Set oXHTTP = Nothing
Exit Function
Error_:
End Function
Private Sub Form_Load()
MsgBox Check_Web_Exists("www.google.es")
MsgBox Check_Web_Exists("www.eljuaker.net")
End Sub
CitarVerdadero
Falso
Option Explicit
Private Sub Wait(ByVal lSeconds As Long)
Dim ActualTime As Date
Dim FutureTime As Date
ActualTime = Second(Now)
FutureTime = ActualTime + lSeconds
Do
DoEvents
Loop While FutureTime > Second(Now)
End Sub
Option Explicit
Public Sub Wait_Minutes(ByVal lMinutes As Long)
Dim Sgl_Start As Single
Dim Sgl_End As Single
lMinutes = lMinutes * 60
Sgl_Start = Timer
Sgl_End = Sgl_Start + lMinutes
Do While Sgl_End > Timer
DoEvents
If Sgl_Start > Timer Then Sgl_End = Sgl_End - 24 * 60 * 60
Loop
End Sub