Pregunta

I just stat to study visual basic .net

I would like to ask about how to continue application.

For example

    Private Sub UI_BT_SAVE_STOP_Click(sender As Object, e As EventArgs) Handles UI_BT_STOP.Click
    Stop
End Sub

then , application will stop on the middle of processing(like a stop button on the visual studio)

I was trying to make continue button, but I can not find continue function to change my application status from stop to continue.

is there anyway to continue application again ?

thanks

¿Fue útil?

Solución

There's nothing quite like that but you could always try importing the sleep function, seen here: https://stackoverflow.com/a/469358/1504882

This will suspend everything the application is doing though.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top