Sign In
Huizhong Long's WebLog
VS Add-ins, macros and Code Model
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
No tags have been created or used yet.
Archive
Archives
January 2006
(1)
October 2005
(3)
September 2005
(2)
MSDN Blogs
>
Huizhong Long's WebLog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Huizhong Long's WebLog
Visual Studio 2005 Automation Samples now available
Posted
over 6 years ago
by
hlong
2
Comments
The Visual Studio 2005 Automation Samples are now available for download at http://msdn.microsoft.com/vstudio/downloads/code/automation/default.aspx It includes new samples for VS 2005 and samples updated to use the new VS 2005 .AddIn mechanism. Please...
Huizhong Long's WebLog
Loading VS Add-ins from URL
Posted
over 7 years ago
by
hlong
19
Comments
In Visual Studio 2005, managed add-ins are allowed to get loaded from a website as long as you enable it in Tools Options Add-in/Macros Security page and also fully trust the add-in assembly from the URL. To load an add-in from a URL, you need to: ...
Huizhong Long's WebLog
VS Code Model events
Posted
over 7 years ago
by
hlong
3
Comments
Users of the Code Model may be alerted of significant changes of code by listening for events with a CodeModelEvents object. The CodeModelEvents object is in EnvDTE80, you get it by casting DTE.Events to EnvDTE80.Events2 , e.g. in VB, it is like CType...
Huizhong Long's WebLog
Code Model & its Interop with Text Editor Object Model
Posted
over 7 years ago
by
hlong
3
Comments
The Visual Studio Code Model can be used to read and edit the structure of the code in a file. The model gives you the ability to interact with files from different langauges in a common way without parsing the code. With this model, an automation client...
Huizhong Long's WebLog
Creating a ToolWindow hosting a .NET user control
Posted
over 7 years ago
by
hlong
8
Comments
In previous version of VS, if you want to create a ToolWindow hosting a .NET user control by using Windows.CreateToolWindow , you'll have to use a shim control to support it. Now with VS 2005, you don't need the shim any more. It is so handy by using...
Huizhong Long's WebLog
Displaying custom bitmap for VS add-in command button from satellite DLL
Posted
over 7 years ago
by
hlong
25
Comments
Add-ins can get resources such as strings, icons, and bitmaps from satellite DLLs which separates resources from your add-in. The first time I tried to get add-in resources from its satellite DLL, I easily find out how to do it for resources like strings...
Page 1 of 1 (6 items)