In case of the following code:
da.Fill(ds)
Is it possible to view the return code from the Fill method in the Visual Studio debugger?
If the following is the case:
rc = da.Fill(ds)
then it's not a problem, as the variable rc gets the value assigned, but there are cases when I can't modify the code and re-build.
Thank you.
Todd