Hi,
I've been trying to get some insight to asynchronous programming during the last 3 weeks but cannot really find a very helpful site for it (and I've read about houndreds of them).
I got this part in VB.net but cannot get it to run in async:
...
SQLe = New SqlCommand
SQLe.CommandType = CommandType.StoredProcedure
SQLe.CommandText = "selecttag"
SQLe.Parameters.Add("@taggi3", SqlDbType.NVarChar).Value = taggi3
SQLe.Connection = axsqlCon1
axsqlCon1.Open()
rs2 = SQLe.ExecuteReader()
While rs2.Read()
taggi2 = rs2("tagid")
taggi2 = "pztaggi" & taggi2 & "pztaggi"
End While
...
Go to the complete details ...