hi all
can u help me how to do this operation in vb.net
for i=0 to 555555555
....
next i
(in C language thread solve this problem)
Thank u :)
hi all
can u help me how to do this operation in vb.net
for i=0 to 555555555
....
next i
(in C language thread solve this problem)
Thank u :)
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
AlanPosted Aug 9, 2008, 9:17 AM
You can still use a separate thread to carry out a long loop in VB.Net:
Imports System.Threading
' ....
Dim t As New Thread(AddressOf MyMethod)
t.Start()
' ....
Sub MyMethod()
For i = 0 To 555555555
' ....
Next i
End Sub