Hello,
Is there a way in code to skip to specific line by goto?
For example:
If Succes Then
Msgbox("","")
Else
goto gg
End If
File.WriteString(File.DirInternal,"1.txt","")
gg: Msgbox("End","")
(what will happen is that if Succes = false then it will directly go to line gg and...