Welcome to the Visual Studio General Discussion Forum
i've been using vb6.0 to develop applications. we just switched to visual studio 2003 .net..
i have the following code in vb6.0
Do While Not RSDetail.EOF
If RSDetail.Fields("itemno") = vItem Then
vQty = vQty + RSDetail.Fields("Qty")
RSDetail.MoveNext
Else
vSearcher = "ActCode = '" + vItem + "'"
RSActTBL.MoveFirst
RSActTBL.Find vSearcher
If Not RSActTBL.EOF Then
vAmt = RSActTBL.Fields("ActAmount").Value
vSubgroup = RSActTBL.Fields("Subgrouper")
Endif
end if
loop
how to re-code this in VS .NET 2003? i cant use
vAmt = RSActTBL.Fields("ActAmount").Value
anymore.. so anyone can give me an idea how to re-code this in the VS .NET 2003
thanks and best regards
marc

