kstoneman10
Member
- Joined
- Feb 20, 2010
- Messages
- 11
- Programming Experience
- 3-5
I resently took over a VB project that had the following coding:
rs1 is a SQL string.
My question is what does += do and where can i learn more about it.
VB.NET:
While rs1.Read()
ncotot += rs1("Actual")
nchtot += rs1("Handled")
sltot += rs1("SlCalls")
End While
rs1 is a SQL string.
My question is what does += do and where can i learn more about it.