¿Hay una función de suspensión simple en Visual Basic que no involucre el subproceso?Función de suspensión Visual Basic
Algo similar como existe en: C: sleep(1);
También probamos este código:
Declare Sub Sleep Lib "kernel32" (ByVal milliseconds As Long)
' pause for 5 seconds
Sleep 5000
... pero no funcionó. Me dio este error:
PInvokeStackImbalance was detected Message: A call to PInvoke function 'Ganzenbordspel!Ganzenbordspel.Spel::Sleep' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling convention and parameters of the PInvoke signature match the target unmanaged signature.