dear technocrats iam have got below given problem visual studio .net has detected that the specified web server is not running asp.net version 1.1 you will be...
Notice that this forum is for .NET addins and your questions is not related to that at all... Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ ...
I'm hooking into the ComponentAdding event to trap when a user drops a control onto a form. This works fine. When code in the form is changed and the form...
It's a bit tricky and error-prone. You have to use also the ComponentChanged event fot the parent with e.Member.Name = "Controls". If I remember right, this...
Hi All, I have addins working fine now the only problem I have now is when I try to contact webservices from my usercontrol that is inside a addin window. I...
How do we create projects similar to Setup or Application Center Test Projects using Visual Studio.NET 2003 Extensibilty features? Do we have any articles...
On the contrary to VB.NET or C# projects, setup, database, etc. projects are "unmodeled projects" meaning that they offer very little (if any) automation (to...
I developed a plugin a while ago and use it quite a bit. Now I'm on a new machine, but can't recompile the controls DLL that the plugin uses and get this...
Hi, Your add-in only needs to register for COM-interop: - The assembly which contains the Connect class, since VS.NET 2002/2003 still uses add-ins through COM....
The assembly that's giving me a problem, a controls-bearing DLL, qualifies as the second variety of assembly you describe that needs to be registered for COM...
Well, then you can register it for COM interop in 2 ways: - Using the Register for COM Interop checkbox of the project properties window. - Opening a VS.NET...
I would love to leave COM interop behind, but unfortunately the controls need to remain Public. Okay. My problem is now solved - I used regasm.exe /codebase ...
I am not sure about your original problem, but you can leave the scope of your usercontrols set to Public and still get rid of COM registration using the...
Hi, Can anyone please help me.... ?? i want to check and disable (if any) source safe 6.0 info attached to a project in my C# application. if u know anything...
In the last couple of weeks I've been getting error reports for AnkhSVN that had stack traces like these: System.MissingMethodException: Method not found:...
This is a known bug that I will be fixing in the next few days, and will be available in the next beta. There main reason for this, mainly because we no longer...
Thanks, Craig. Does this mean I can tell my users to do regasm /codebase on the 7.x envdte.dll? ... -- Arild AnkhSVN: http://ankhsvn.tigris.org Blog:...
Hello, I'm trying to add a new ToolBox tab and items to VS.NET 2003 (from an external application). I use the code below. It doesn't throw any exception, but...
I donīt know exactly but here you have a code snippet that works. Compare it to yours. Regards, Carlos J. Quintero (Visual Developer - .NET MVP) Private Sub...
Hi Carlos, Thank you very much for your message. Your code is definitely a step ahead - I can already see the added item in the new tab and drop it in a text...
I can reproduce your issue but I have no solution for it. When you do the same manually instead of from a program, the text is persisted. The TooBoxXXX stuff...
Hi Carlos, Thank you very much for your reply. Actually, I need to register an ASP.NET custom server control. Unfortunately, the code doesn't work with this....
Your code seems correct. At least is similar to the code below that I have just tested and it works fine: the usercontrol is added to the tab and is persisted...
Hi David, A very good Article. But a question now. Now that a codelement is codeClass, I wanted to get all the Source Code related to this codeClass. Any...
I wish to set a keyboard binding automatic from my VS.Net Addin in c# like this: command.Bindings = "Text editor::Alt+X"; but this crashes in a german...
I thought about your question when I saw it in the microsoft newsgroups a couple of days ago and I didnīt see an easy solution. First, you must check if that...