Hi Peter, I haven't really looked at your problem in detail, but I saw the reference to Carlos's article http://www.mztools.com/Articles/2006/MZ2006017.aspx ...
3830
pjollans
Nov 1, 2007 11:19 pm
Hi, there used to be a problem removing menu items when you uninstall an Add-In. I haven't looked at this problem for years, probably not since VS 2002. Does...
3831
Peter Macej
peter_macej
Nov 4, 2007 4:51 pm
Hi Phill, In fact, I'm using VSWebProjectItem.Load/Unload method for Web site projects. This works fine. Moreover, I call VSWebProjectItem.WaitUntilReady after...
3832
liubolook
Nov 5, 2007 12:45 pm
Hi everyone, I am new here. I want to build a vs templates file in my developement. I have searched google for a long time, and have found some articles about...
3833
Tim
thenybbler
Nov 27, 2007 12:41 am
I've been writing a VS .NET 2003 add-in for some time now and have recently lost the abillity to debug my add-in. I've tried uninstalling and re-installing my...
3834
greeneyes
starthefish
Nov 27, 2007 2:55 am
Did you check the registry to make sure the entries for your add-in are located where the registry thinks they are? ... From: Tim To:...
3835
Tim
thenybbler
Nov 27, 2007 9:56 am
I've not changed any of the registry settings - and debugging had been working for months. It seems like VS is loading a different version of my addin's .dll....
3836
Shah Japan
shahjapan
Nov 27, 2007 1:55 pm
Hi, 1. Check whether on the project properties you have enabled the "Enable the unmanaged code debugging". 2. Under project properties goto Build tab and check...
3837
Tim
thenybbler
Nov 27, 2007 8:23 pm
I've checked that Unmanged Code Debugging is enabled and that Register for COM Interop is enabled. I've also checked that .NET Framework SP1 is installed...
3838
Tim
thenybbler
Nov 27, 2007 10:53 pm
I've now solved the problem - it was being caused by VS .NET somehow loading the Release version of my dll not the Debug version. I manually removed all...
3839
elektrofetish
Dec 13, 2007 3:42 am
I've read the articles about removing commands during uninstallation (via vbscript) and I'm having an issue translating this code to work in the uninstall...
3840
dmorelli75
Dec 24, 2007 5:50 pm
Hi! this is my first post. I hope you can point me the right direction.. I'm trying to setup a channel and register a remoting service from the Addin...
3841
Anna-Jayne Metcalfe
jalapenokitten
Dec 24, 2007 6:00 pm
Hi Davide, ... the Addin OnConnection(), the remoting code works well from a windows form but gives exception if the service is hosted from an addin, the ...
3842
dmorelli75
Dec 24, 2007 9:50 pm
... C++ ... you've ... yes, looks like it cannot find some referenced assembly but I can't figure out which one.. It's strange because the client gives this ...
3843
elektrofetish
Dec 30, 2007 2:46 pm
I'm looking to license my addin and am evaluating a few licensing systems out there (DeployLX and Manco currently). I know there are quite a few providers of...
3844
Phil Jollans
pjollans
Dec 30, 2007 5:51 pm
Hi Joshua, I have my own license key system which is fairly primitive and could probably be broken fairly easily. There are a number of commercial systems...
3845
Shah Japan
shahjapan
Dec 31, 2007 9:12 am
You can use your own web services for licensing your addin. ... -- Regards, Japan Shah [Non-text portions of this message have been removed]...
3846
Phil Jollans
pjollans
Dec 31, 2007 10:31 am
Can you maybe explain a little bit more what you mean? Phil ... From: Shah Japan To: vsnetaddin@yahoogroups.com Sent: Monday, December 31, 2007 10:12 AM ...
3847
Shah Japan
shahjapan
Jan 1, 2008 5:31 am
for example you can make a PHP web service using XML-RPC. so user will enter the licence number if its in your DB then you can write the registry encoding data...
3848
Joshua
elektrofetish
Jan 1, 2008 4:52 pm
Interesting. Since this group is for people who write .NET based addins for vs.net you could also create your web service using, well, .NET ;) But I digress. ...
3849
greeneyes_2399
Jan 3, 2008 12:31 am
The return value from VCProject::get_Platforms is incorrect in my C++ VS 2005 addin. Can someone tell me what I'm doing wrong? ...
3850
greeneyes_2399
Jan 3, 2008 12:52 am
Wouldn't you know it... as soon as I posted my message, a light bulb went off in my head. The problem is the cast between EnvDTE::Project * and...
3851
ngo_udhs
Jan 14, 2008 7:12 pm
I've created a add-in in VS.NET 2005 using C#. The add-in loads a tool window OnConnection and it contains a User Control with input text fields and a "Login"...
3852
Phil Jollans
pjollans
Jan 14, 2008 9:56 pm
Hi Ngo, this isn't so much an Add-In problem, as a general .NET programming question. If the button is on a UserControl, then the handler for the button click...
3853
ngo_udhs
Jan 15, 2008 2:54 pm
Phil, I understand that event-handling should be done in the Form which it was created. However is it possible for the Exec method in the Connect.cs class to...
3854
munderhillx
Jan 15, 2008 5:41 pm
This Addin will sort the attributes of any well formed XML such as XAML and other XML files. Find it on my blog - http://blog.mikeunderhill.com...
3855
rishiparkhe
Feb 5, 2008 12:19 pm
Hello all, I am writing a visual tool that would create custom classes, currently it uses CodeDOM. I am stuck a point where I need to parse the code for...
3856
Joshua
elektrofetish
Feb 5, 2008 5:09 pm
In my opinion, CodeDOM, while very powerful is also very frustrating to work with. I also have created a code generator; however the code for the classes that...
3857
Rishikesh Parkhe
rishiparkhe
Feb 8, 2008 2:55 am
Hi Joshua, Thanks for your comments. I was also thinking about implementing my own graph for the code to be generated. And agree that CodeDOM is very powerful,...
3858
iangreenhill
Feb 15, 2008 3:10 pm
Hello I create a stand MSI file from a Deployment project associated to my addin. The installs for all users - the MSI file is invoked via msiexec with...