Very often in the code I'm working with, there are blocks of code like this:
Dim myDataTable As DataTable
Dim myValue As String
...
With myDataTable.Rows(0)
.Item("foo") = myValue
End With
myDataTable.Rows(0).Item("foo") += 1
Inside the With statement while debugging, I can hover over myValue and see the contents of that variable. I can also hover over the word Item in myDataTable.Rows(0).Item("foo") and see the contents of that element of the object.
However, I can't hover over the .Item("foo") in the With statement and see the contents of the variable there. I can't change the structure of the code to remove the with statements, because it would change thousands of lines of code and significantly lose readability.
I've tried most of the solutions in this question, but they don't have any impact on the particular sub-case I'm having issues with here.
Is there any setting or any other way to get Visual Studio to display those datatips?