Click here to Skip to main content
15,896,727 members

Comments by diablo22 (Top 61 by date)

diablo22 20-Dec-21 12:35pm View    
need more information than than to manage it, this will not solve fetch information between userPosition and userPicture to display in GenerateDynamicUserControl()
diablo22 24-Sep-20 14:52pm View    
it is clear.
First get the number from my.settings.time
Then timer tick each second reduce progress - 1 until gets 0 then when its 0 show msgbox
diablo22 24-Sep-20 14:47pm View    
something like:
Dim progress As Integer = My.Settings.isBackUpTime
Private Sub Timer2_Tick(sender As Object, e As EventArgs) Handles Timer2.Tick
Try
progress = progress - 1
'Timer2.Interval = 1

If progress = 0 Then
MsgBox("start copy")
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
diablo22 24-Sep-20 14:11pm View    
timer is starting, but i cannot make to read from my.settings.time value and start countdown from 10 - 1 until 0 when get to 0 to display msgbox
diablo22 24-Sep-20 14:03pm View    
it doesnt countdown the value from settings