Hello
I have 2 For loops:
Dim i as integer
Dim j as integer
For i = 1 to 366
' perform code action
Next
For j = 1 to 333
' perform code action
Next
I need to start the first for loop exactly at 14.00 PM.
The j loop should start at 03:00 AM in the morning. How can i do that? Maybe there is the possibility to read the system time from the computer or something?
I have 2 For loops:
Dim i as integer
Dim j as integer
For i = 1 to 366
' perform code action
Next
For j = 1 to 333
' perform code action
Next
I need to start the first for loop exactly at 14.00 PM.
The j loop should start at 03:00 AM in the morning. How can i do that? Maybe there is the possibility to read the system time from the computer or something?