Im having a lot of difficulty with the new MSDN for VS.NET. It seems like a major step backwards from the MSDN that accompanies VS.6. Basically, it seems like there is a lot of information, but none of it is readily accessible.
In VS6, the F1 key brings me to a page that lists almost everything I need to know about a command, property, method, event, object, etc. The Applies To list tells me what is just above my location in the object hierarchy, and the Properties, Methods and Events lists tell me what is just below my location in the hierarchy.
However, the same does not seem to be true in MSDN.NET. I recently went looking for information on the Form.BindingContext property from the example:
The help system showed me a page for the BindingManagerBase class, (which is what is returned by the above statement), not the BindingContext property itself, or any information on the parameter list. It took me about fifteen minutes of digging before finally finding a page on the property I was looking for and documentation regarding the parameter list.
Along the way was many pages filled with little information, such as the help page for the AddNew method which stated little more than that the method could be used to add another member to the collection, but had no mention of the parameters required for the methods use.
Is there a trick to using the new help system that Im missing? Some change in philosophy or conventions that will make using it easier. Because at the moment, its cost in frustration is almost too high to bother with.
In VS6, the F1 key brings me to a page that lists almost everything I need to know about a command, property, method, event, object, etc. The Applies To list tells me what is just above my location in the object hierarchy, and the Properties, Methods and Events lists tell me what is just below my location in the hierarchy.
However, the same does not seem to be true in MSDN.NET. I recently went looking for information on the Form.BindingContext property from the example:
Code:
Me.BindingContext(Me.dsCustomerIndividual, "Customers").EndCurrentEdit()
The help system showed me a page for the BindingManagerBase class, (which is what is returned by the above statement), not the BindingContext property itself, or any information on the parameter list. It took me about fifteen minutes of digging before finally finding a page on the property I was looking for and documentation regarding the parameter list.
Along the way was many pages filled with little information, such as the help page for the AddNew method which stated little more than that the method could be used to add another member to the collection, but had no mention of the parameters required for the methods use.
Is there a trick to using the new help system that Im missing? Some change in philosophy or conventions that will make using it easier. Because at the moment, its cost in frustration is almost too high to bother with.