Search the web
Sign In
New User? Sign Up
vsnetaddin · Visual Studio.NET Add-ins
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1926 - 1955 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1926
Try if you can cast the Window to an HTMLWindow object and then use the CurrentTab property to switch views... Regards, Carlos J. Quintero (Visual Developer -...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Jul 1, 2004
7:44 am
1927
Carlos, Thanks a lot! The following code worked: Window win = DTE.ItemOperations.OpenFile(..., EnvDTE.Constants.vsext_vk_Designer); HTMLWindow htmlWindow =...
ma9945
Offline Send Email
Jul 1, 2004
5:16 pm
1928
There is a VS addin sample called CSharpAddin. It has the following code: public void OnConnection(object application, ext_ConnectMode connectMode, object...
ma9945
Offline Send Email
Jul 1, 2004
6:00 pm
1929
Sorry, sample called SimpleAddins...
ma9945
Offline Send Email
Jul 1, 2004
8:32 pm
1930
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the vsnetaddin group. File : /VS.NET...
vsnetaddin@yahoogroup...
Send Email
Jul 1, 2004
9:51 pm
1931
My addin generates the about box information dynamically during load time. However, how do I know whether the addin is installed under HKCU or HKLM? ...
Arild Fines
arild_fines
Online Now Send Email
Jul 2, 2004
4:02 pm
1932
Wouldn't that depend on whether the user selects to install the add-in for everyone or just for himself? Arild Fines <arild.fines@...> wrote:My addin...
Kevin Greiner
greinerk
Offline Send Email
Jul 4, 2004
2:50 pm
1933
... Yes, it would. But I don't know how to extract that information at runtime. -- Arild AnkhSVN: http://ankhsvn.tigris.org Blog: http://ankhsvn.com/blog IRC:...
Arild Fines
arild_fines
Online Now Send Email
Jul 4, 2004
4:45 pm
1934
I suppose that you can check in the Windows registry directly... Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ From: Arild Fines...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Jul 5, 2004
7:23 am
1935
... Yeah, I'm doing that. It's not a completely reliable heuristic, tho. -- Arild AnkhSVN: http://ankhsvn.tigris.org Blog: http://ankhsvn.com/blog IRC:...
Arild Fines
arild_fines
Online Now Send Email
Jul 5, 2004
7:32 am
1936
There are another couple of things for your consideration: - You can customize your msi package with the Orca utility to hide the "All users" and "Just Me"...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Jul 5, 2004
7:39 am
1937
Hi There, I want to get an icon from the AddIn Dll Resource to put it into the AddIn Tool Window. How can I get this Icon from the Resource file? *** i have an...
netrythm2003
Offline Send Email
Jul 6, 2004
1:22 pm
1938
http://www.codeproject.com/dotnet/vsnet_addin_icon_change.asp gives you some idea ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ E-Mail...
Upadrasta V N. Pardh...
uvnpsaradhi
Offline Send Email
Jul 6, 2004
1:30 pm
1939
You can retrieve it using GetManifestResourceStream: Dim objIcon As Icon Dim objAssembly As System.Reflection.Assembly objAssembly =...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Jul 6, 2004
1:32 pm
1940
Hi all I'm creating a toolwindow using CreateToolWindow within a VSIP project. I was wanting to get this window to dock as if it were a document window. I'm...
stevensartain
Offline Send Email
Jul 6, 2004
3:43 pm
1941
Hello, I am new to making VS.NET Add-ins. Can anyone please tell me the name and the location of the VS.NET Add-In wizard and the name of the folder containing...
Greg Woolley
gregwoolley
Offline Send Email
Jul 6, 2004
5:29 pm
1942
I think this has been discussed already in this forum. Try message #1379 ToolWindow Docking Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Jul 7, 2004
7:52 am
1943
Maybe you are referring to: C:\Program Files\Microsoft Visual Studio .NET 2003\Common7\IDE\Extensibility Projects If not, try searching in folders: C:\Program...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Jul 7, 2004
7:58 am
1944
Thanks Carlos I was aware of that article, but this points to using the DTE and changing the IsFloating and Linkable flags. Whilst I can simply iterate...
stevensartain
Offline Send Email
Jul 7, 2004
10:50 am
1945
Ok, this is one tough, I think. Suppose that you want your add-in to modify property values of controls of a form. Once you have the IDesignerHost from ...
carlos_j_quintero
carlos_j_qui...
Offline Send Email
Jul 8, 2004
10:29 am
1946
Hi Carlos, thanks for your quick reply. I now realize the Add-In wizard files aren't supplied with Visual C++.NET 2003, which explains why I couldn't find them...
Greg Woolley
gregwoolley
Offline Send Email
Jul 9, 2004
11:40 am
1947
Hello again, can anyone offer suggestions why I get this error:_ "Unable to attach to application 'vsmsvr.exe (PID: 3248) on machine COMP" whilst trying to...
Greg Woolley
gregwoolley
Offline Send Email
Jul 9, 2004
11:48 am
1948
Here is the code... Properties props=applicationObject.get_Properties("Projects", "VCDirectories"); IVCCollection...
neo2600777
Offline Send Email
Jul 10, 2004
5:01 pm
1949
Hello! I've created an add-in which works on both files and VC projects, when right clicking on them. It gets either a file or a project, generate a command...
Roee Friedman
roee_fr
Offline Send Email
Jul 13, 2004
10:00 pm
1950
Carlos, I haven't tried this is the context of an Add-In, however the designers I've written for custom controls use (approximately) the following code to...
Matt Garven
the_ashling
Offline Send Email
Jul 14, 2004
4:56 am
1951
Hi Matt, That does the trick getting the IComponentChangeService service from the IDesignerHost instead of from the control: [VB.NET] ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Jul 14, 2004
8:53 am
1952
Carlos, I don't have an answer for #1, but I think you can accomplish #2 by retrieving the Document object for the form and setting its Saved property to...
kasharoo_1
Offline Send Email
Jul 14, 2004
10:13 pm
1953
Is there any way to determine ProjectItem's type (such as win form, web form, resource, etc.)? The closest thing I've found so far is ...
usysware
Offline Send Email
Jul 15, 2004
5:03 am
1954
AFAIK, "SubType" property is the closest thing and I think that I have seen only 5 subtypes: "Code", "Form", "UserControl", "Component" and "ASPXCodeBehind"....
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Jul 15, 2004
8:46 am
1955
Hi. Two steps method: First create a solution which includes one project of each type you want to specify, I.e.: One Web Project, one class project and so on. ...
daniel_seara
Offline Send Email
Jul 16, 2004
11:14 am
Messages 1926 - 1955 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help