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 your group to be featured on the Yahoo! Groups website? 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 1226 - 1255 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1226
Carlos, I tried exacly what you suggested and reproduced the problem with VS 2002. It appears to be a problem with a clash of GUIDs and so the solution is to...
VinceRothwell
Offline Send Email
Oct 1, 2003
10:26 am
1227
Dennis, Is this what you are after? Dim win As Window = _DTE.Windows.Item (EnvDTE.Constants.vsWindowKindFindResults1) Dim sel As TextSelection = win.Selection ...
VinceRothwell
Offline Send Email
Oct 1, 2003
10:26 am
1228
Carlos, Just had another thought. My AddIn loads the ToolWindow during the OnConnection event and I don't have the lockup problem. I wonder if this gets in...
VinceRothwell
Offline Send Email
Oct 1, 2003
10:27 am
1229
John, Try using SetProcessWorkingSetSize(Process.GetCurrentProcess.Handle, -1, -1) Which is a Kernal function which would need to be decalred with Declare...
VinceRothwell
Offline Send Email
Oct 1, 2003
11:13 am
1230
Sounds like a cure for the symptoms, not the disease... :) -Oz ... From: VinceRothwell [mailto:yahoo@...] Sent: Wed, October 01, 2003 6:44 AM To:...
Oz Solomon
wndtabs
Offline Send Email
Oct 1, 2003
11:33 am
1231
Oz, I thought that but I spent a long time with memory profilers trying to find out why one of my AddIns was using large amounts of memory. Every object I...
VinceRothwell
Offline Send Email
Oct 1, 2003
12:09 pm
1232
There is also a known issue that causes the IDE not to release memory allocated by forms designers until you close it. So, if your addin opens all designers of...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Oct 1, 2003
12:48 pm
1233
Well, at last you could reproduce it. I am not sure if using new GUIDs each time is a good solution. It seems that the IDE uses that GUID to remember location,...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Oct 1, 2003
12:52 pm
1234
First, let me apologize that I didn't have the time to read your article in full. But let me risk making a fool of myself by repeating what you might already...
Oz Solomon
wndtabs
Offline Send Email
Oct 1, 2003
1:06 pm
1235
I'm new to this thread; but what are the advantages/disadvantages of using xtremesimplicity2003 vs the MS controlhost? thanks, ... allows you ... therefore...
blacksheep_dz
Offline Send Email
Oct 1, 2003
1:14 pm
1236
1) It is more simple (less files and less code) 2) It allows you to set the scope of Usercontrols to Friend (Internal) instead of Public, that way they are not...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Oct 1, 2003
1:24 pm
1237
Oz, I agree with what you say. Going back to the original problem which was excessive memory usage when running an AddIn, I think we need to clarify wether...
VinceRothwell
Offline Send Email
Oct 1, 2003
5:40 pm
1238
I had a similar problem and put it down the the DotNet runtime not garbage collecting as well as it could do. I tried using the memory profiler at ...
VinceRothwell
Offline Send Email
Oct 1, 2003
5:40 pm
1239
I haven't followed this whole thread but there was an issue with the 1.0 framework with memory allocations greater than 1 meg not being freed up correctly even...
Robert Hachtel
roberthachtel
Offline Send Email
Oct 1, 2003
5:59 pm
1240
thanks Carlos. I notice using the MS version there is not a way to "Kill" the toolwindow. Once created, even if I attempt to kill the window object, it just...
blacksheep_dz
Offline Send Email
Oct 1, 2003
6:00 pm
1241
Yes. Thank you. Also, I notice that the dte.find.execute is an asnyc process when using dte.find.action = vsFindAction.vsFindActionFindAll. To keep your code...
blacksheep_dz
Offline Send Email
Oct 1, 2003
6:01 pm
1242
Vince, I'm coming in in the middle, so I don't know the entire history. Here's my two-cents worth. You're doing a vsFindAction.vsFindActionFindAll (which is...
Gifford, Noel
sherloch2002
Offline Send Email
Oct 1, 2003
9:01 pm
1243
I used XSShimGen.exe to create the com shim control. And i have two questions. 1. When using the shim control and when the tool window is docked with and...
John
rainerclimbing
Offline Send Email
Oct 1, 2003
9:27 pm
1244
FYI-- I get the same result in VS 2003 if i load the add-in, open the tool window (via shim control), make sure its undocked, close the tool window, then try...
John
rainerclimbing
Offline Send Email
Oct 1, 2003
9:27 pm
1245
Sorry about this, but i have a little more info for my first question. The Window obj has a SetTabPicture method that takes an object of type IPictureDisp....
John
rainerclimbing
Offline Send Email
Oct 1, 2003
9:50 pm
1246
John, See my msg 1219 (http://groups.yahoo.com/group/vsnetaddin/message/1219) There are other ways which involve resource DLLs or if you do not need it...
VinceRothwell
Offline Send Email
Oct 2, 2003
9:03 am
1247
Toolwindows can not be closed, only hidden. This is by design and the shim control has no influence on it. Carlos ... De: blacksheep_dz...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Oct 2, 2003
11:35 am
1248
Hi Vince, Thanks for this class. I would suggest you to update it for support for Option Strict On, which should be used always, and will not harm if you have ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Oct 2, 2003
1:11 pm
1249
I am unable to reproduce this case, and it would cause so havoc in addins that it would have been noticed before, I think. Maybe you have something special in...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Oct 2, 2003
1:14 pm
1250
Hi, For those of you who like me create small addins frequently for some tests (toolwindows, transparency issues, etc) and are tired of setting Option Strict...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Oct 2, 2003
1:38 pm
1251
Hi John, Carlos, I've not noticed this - we certainly open and close our toolwindows all the time. Is there any chance we can see the code that executes when...
xtremesimplicity2003
xtremesimpli...
Offline Send Email
Oct 3, 2003
2:53 am
1252
Hi Jeremy, There is nothing special with the code, you can reproduce it with the code generated by your tool: 1) Run the tool and generate a shim control and...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Oct 3, 2003
7:27 am
1253
Jeremy, I had to stop using the shim because it locked up when setting an object in the properties window using, _ToolWindow.SetSelectionContainer(New Object()...
VinceRothwell
Offline Send Email
Oct 3, 2003
9:07 am
1254
Hi, I want to enumerate the controls on a Web Form. I am able to do this on a Windows Form, using the IDesignerHost interface, which I get from the...
pjollans
Offline Send Email
Oct 4, 2003
9:28 pm
1255
Carlos, Agreed, I only created the class as I took it out of some other code I had. It is only really an example. As for Option Strict, I never have it...
VinceRothwell
Offline Send Email
Oct 5, 2003
10:45 am
Messages 1226 - 1255 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