Why does the MSDN library constantly say "Information Not Found"?
- by Zian Choy
Environment:
VS 2008 Pro SP1
MSDN Library for VS2008SP1
Sample Code:
Dim userDataset = New DataSet
Dim myDataAdapter = New SqlDataAdapter("SELECT UserName FROM tblwebUsers WHERE name = @person", connect)
myDataAdapter.SelectCommand.Parameters.Add("@person", SqlDbType.NVarChar)
When I put my cursor on the "d" in "Add" and press F1, I get an "Information Not Found" error from the MSDN Library.
Does anyone have any suggestions for addressing the issue?