How to get the list of Visual Basic Keywords
A while ago one of my students asked me if it's possible to get a list of Visual Basic keywords. Surely enough I sent him to check MSDN CD we just got. He came back really fast - a corresponding topic was located at:
- Visual Tools and Languages
but there was no way to copy the list or even print it out.
Our next step was to go to MSDN on-line and copy and parse the HTML source of index page. Didn't work either - Select All/Copy resulted in few meaningless characters copied to Clipboard, viewing the document source showed that index was actually generated dynamically from xml document ("/library/deeptreeconfig.xml").
Fortunately, IE allows to view XML documents, so we quickly built the absolute path from relative ("http://msdn.microsoft.com/library/deeptreeconfig.xml") and the rest was easy:
Related article: How to get the list of Visual Basic blue words
|