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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 636 - 665 of 3875   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
636
hi all, this is my first attempt at creating a VS.NET add-in. Some of my friends are saying when they install it, either the icon doesn't show up on the Tools...
dave wanta
ghop_98
Online Now Send Email
Feb 3, 2003
9:41 pm
637
Hi, I have a class, called CodeGen.Builder, which generates code for a class (CG.Build), uses the System.CodeDom objects to compile it, and then retrieves a...
psains <7qnft1j02@...>
psains
Offline Send Email
Feb 4, 2003
1:18 pm
638
hi all i have a problem with vs.net, after i built some addin examples. i can't make any new c# projects an error message appears "library not registered"?? ...
Mohamed Mesalem <m_me...
m_mesalem
Offline Send Email
Feb 4, 2003
11:36 pm
639
This happens because your setup project included an Add-in which referenced VSLangProj. When the Add-in is uninstalled it will also uninstall the type lib for...
Craig Skibo
craigs_ms
Offline Send Email
Feb 5, 2003
1:12 am
640
Because of the way that assemblies are found by .NET components running as COM objects, you should make sure that all the referenced assemblies are either in...
Craig Skibo
craigs_ms
Offline Send Email
Feb 5, 2003
1:13 am
641
For the people who do not have the button have them shut down all instances of VS, then from a command prompt run the command devenv /setup. When they restart...
Craig Skibo
craigs_ms
Offline Send Email
Feb 5, 2003
1:14 am
642
Hello, I am trying to open a window in VS.NET that will show a url of my choice. In my usercontrol I have a button that I want to open up a browser window...
Sam Hughes <samh@...>
Sam_Hughes
Offline Send Email
Feb 5, 2003
11:15 pm
643
ItemOperations.Navigate(...) will open up either a new browser window, or recycle an existing one (your choice). Craig Available Soon: Inside Visual Studio...
Craig Skibo
craigs_ms
Offline Send Email
Feb 5, 2003
11:45 pm
644
Dave, Craig's deadly right - the /setup key is the remedy. But there's another trick I used in my add-in's installation - it still requires VS .NET to be...
lapshin_d <lapshin_d@...
lapshin_d
Offline Send Email
Feb 6, 2003
8:57 am
645
Hi, I have noticed that the CodeElements collection returns identical CodeElement objects, with the same start line, for actually different VB.Net overloaded...
carlos_j_quintero <ca...
carlos_j_qui...
Offline Send Email
Feb 6, 2003
10:44 am
646
Hi, I have noticed that the CodeElements collection returns identical CodeElement objects, with the same start line, for actually different VB.Net overloaded...
carlos_j_quintero <ca...
carlos_j_qui...
Offline Send Email
Feb 6, 2003
10:45 am
647
IMO, that is not good practice. devenv.exe /setup will reset all the user's toolbar customizations, so it isn't wise to call on an end-user machine. Instead,...
Oz Solomon
wndtabs
Offline Send Email
Feb 6, 2003
1:20 pm
648
Hi everybody, I would like to know how a project and his files are represented by .net and in case of an addin development in C++, how to get this information...
addinblup <add-in@...>
addinblup
Offline Send Email
Feb 6, 2003
2:26 pm
649
Hi, There are 2 extensibility models, one for VB.Net, C# and VJ#, and another for C++. If your add-in is for C++, search "VCProject" in the MSDN Library and...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Feb 6, 2003
2:48 pm
650
where do you do this at? I do this in my setup msi, but I'm assuming you again do this in your code? Where at? In the execute method? Also, what is the exact...
dave wanta
ghop_98
Online Now Send Email
Feb 6, 2003
2:49 pm
651
I write my addins in C++ so I have the luxury of using ATL's .reg files. I have them set up so when you register the .dll it sets this key in the registry....
Oz Solomon
wndtabs
Offline Send Email
Feb 6, 2003
2:58 pm
652
Yes, this is the better way of doing it, resetting the PreloadAddinState (user Add-in) or the CommandPreload (admin Add-in) values within the registry and...
Craig Skibo
craigs_ms
Offline Send Email
Feb 6, 2003
5:54 pm
653
hmm.. I just had both people run the /setup switch. No go. So I sent them the ReCreateCommands.reg file, that is output by the wizard. I asked them to close...
dave wanta
ghop_98
Online Now Send Email
Feb 6, 2003
6:00 pm
654
HI Craig, I fully agree that "devenv /setup" is a simple remedy on a *developer* machine. What I was pointing out was that it is not a good idea to execute...
Oz Solomon
wndtabs
Offline Send Email
Feb 6, 2003
6:02 pm
655
You can also do something similar to a .rgs file with a .NET Add-in. The .NET Frameworks has the ComRegisterFunctionAttribute and ...
Craig Skibo
craigs_ms
Offline Send Email
Feb 6, 2003
6:04 pm
656
That totally works, but is there anyway to get a reference to the EnvDTE in my user control (or to get a reference to my UserControl in the Connect Class)? ......
Sam Hughes <samh@...>
Sam_Hughes
Offline Send Email
Feb 6, 2003
7:08 pm
657
Ahh.. never mind. I found a link that says you don't have to use the shim control anymore. Now I know how to do it. ... in...
Sam Hughes <samh@...>
Sam_Hughes
Offline Send Email
Feb 6, 2003
7:35 pm
658
There are a couple ways of doing it, usually what I do is put a property on the user control of type DTE, then set that property when I create the tool window....
Craig Skibo
craigs_ms
Offline Send Email
Feb 6, 2003
7:43 pm
659
I have added a (reference type) variable to my (C#) form class but haven't figured out how to initialize the variable after the form's InitializeComponent...
Kollen Glynn
kg_groups
Offline Send Email
Feb 6, 2003
8:36 pm
660
Hello group, I would appreciate any help on how to remove custom IDE commands created with AddNamedCommand() when the add-in is being uninstalled? Of course...
lapshin_d <lapshin_d@...
lapshin_d
Offline Send Email
Feb 7, 2003
8:35 am
661
Hello again, Is there any way to have control over a command bar created by calling the Commands.CreateCommandBar() method? I get quite strange results with...
lapshin_d <lapshin_d@...
lapshin_d
Offline Send Email
Feb 7, 2003
8:42 am
662
The only official way is to create a custom action for the installer of your Add-in. This custom action would create a new instance of VS programmatically,...
Craig Skibo
craigs_ms
Offline Send Email
Feb 7, 2003
8:39 pm
663
This is something that you will need to calculate out and add yourself because the code model does not go down to the statement level. You can find the...
Craig Skibo
craigs_ms
Offline Send Email
Feb 7, 2003
8:52 pm
664
You should be able to use the CommandBar object model to position the toolbar. I know there are properties (their names escape me now), something like Position...
Craig Skibo
craigs_ms
Offline Send Email
Feb 7, 2003
8:55 pm
665
One comment on this sample when working in design mode... In C#, CodeClass.AddVariable method requires the location parameter to be specified whereas it's...
Kollen Glynn
kg_groups
Offline Send Email
Feb 8, 2003
12:23 am
Messages 636 - 665 of 3875   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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