문제

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

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top