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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 187 - 216 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
187
Hi I'm looking for informations, source code, ... for extending Codemodel object. I want to implement ASSEMBLER (ASM) capabilities in VSNET IDE. Right now i...
superfxus
Offline Send Email
Jan 2, 2002
1:31 pm
188
FX US, We can help you with that. Please have a read of this white paper and let me know what you think. Be advised though that membership in the VSIP program...
phil_shatz
Offline Send Email
Jan 3, 2002
5:35 pm
189
When the Add-in is registered, it sets a flag in the registry called CommandPreload that holds if the Add-in's OnConnection should be called with...
Craig Skibo
craigs_ms
Offline Send Email
Jan 4, 2002
12:25 am
190
Can you describe the code you had when you got the error? I tried this and it worked fine: Sub cmdbartest() Dim cmdbarpop As Microsoft.Office.Core.CommandBar ...
Craig Skibo
craigs_ms
Offline Send Email
Jan 4, 2002
12:30 am
191
When I develop WinForm applications, I use Application.UserAppDataRegistry and Application.CommonAppDataPath. I want to use some configuration files with my...
rck4developer
Offline Send Email
Jan 4, 2002
2:04 am
192
This is not supported. The reason is that the .NET Application object reads the signature of the process for information, it expects the process to be a .NET...
Craig Skibo
craigs_ms
Offline Send Email
Jan 4, 2002
5:52 pm
193
Thank you for the good explanation. I guess I will have to create a directory underneath the C:\Program Files\Microsoft Visual Studio.NET\Common7\IDE...
rck4developer
Offline Send Email
Jan 7, 2002
6:28 pm
194
If you will be storing user data, you will want to be carefull doing this. Not all users have permissions to write to that location (you need something higher...
Craig Skibo
craigs_ms
Offline Send Email
Jan 7, 2002
7:43 pm
195
I'm trying to use the CodeModelEvents Object but can't get hold of it. A short example code in the documentation does this: MyCodeModelEvents =...
erik_cassel
Offline Send Email
Jan 7, 2002
10:36 pm
196
This was implemented only by the VC code model (and very poorly named, it should have been VCCodeModelEvents). Since it is an event specific only to VC, you...
Craig Skibo
craigs_ms
Offline Send Email
Jan 7, 2002
11:39 pm
197
I have an add-in which creates a toolbar button. When they click on this toolbar button, it might take a few seconds. I'd like to change the mouse cursor for...
Jeff Kryzer
bartsimpson5...
Offline Send Email
Jan 9, 2002
6:06 am
198
Hi How do I add separators (ie. horizonal line separator) in my menu bar using VS Addin API? Thanks. Imran...
Imran Tusneem
imrantusneem
Offline Send Email
Jan 9, 2002
7:28 am
199
Need some help on integrating a compile help project into the Visual Studio .NET help collection. Already working with the hxds.dll to register the help file...
richardadleta
Offline Send Email
Jan 10, 2002
4:01 pm
200
After debugging an add-in, I wish to go "to production", what changes are required in the registry to "go product". Do I delete the LoadBehavior or...
blacksheep_dz
Offline Send Email
Jan 10, 2002
4:07 pm
201
Do you mean to reset VS so that it will think that your Add-in was just installed? devenv /setup goes through the work of resetting all the flags for you (it...
Craig Skibo
craigs_ms
Offline Send Email
Jan 10, 2002
5:20 pm
202
Have you considered using TDL? The add-in would probably still be loaded, but access to it could be disabled based on the project type. If you're unfamiliar...
ewstepp
Offline Send Email
Jan 10, 2002
8:13 pm
203
Has anyone had any problems when installing a .NET application with files not registering. Specifically, the below: SSPng.dll vb6ext.olb msscript.oca I am...
Richard
richardadleta
Offline Send Email
Jan 10, 2002
9:01 pm
204
... just installed? devenv /setup goes through the work of resetting all the flags for you (it even deletes the value in the PreloadAddinState key if one was...
blacksheep_dz
Offline Send Email
Jan 10, 2002
9:53 pm
205
How do you locate the control/components on a form through automation. I was to obtain the method/events and properties of each control/component on a form...
blacksheep_dz
Offline Send Email
Jan 17, 2002
6:45 pm
206
I think that you can do this via IDesignerHost and the Windows Forms designer object model. Take a look at this example: ...
Elton Wells
thewyrmboy
Offline Send Email
Jan 18, 2002
2:52 am
207
Thanks, I'll try it. DZ Tulsa, OK. ... From: Elton Wells [mailto:wells@...] Sent: Thursday, January 17, 2002 9:14 PM To: vsnetaddin@yahoogroups.com ...
blacksheep_dz
Offline Send Email
Jan 18, 2002
3:14 pm
208
I am having some difficulty getting to the controls on my add-in once it has been created. Is there some example somewhere in VB .NET about casting it back to...
Richard
richardadleta
Offline Send Email
Jan 18, 2002
8:52 pm
209
Hi all, I have been following this group for a while. I am new to exploring the world of developing add-ins. I have a few ideas for increasing productivity on...
rd_bigdog
Offline Send Email
Jan 21, 2002
12:56 pm
210
How do you test add-ins in debug mode?...
rd_bigdog
Offline Send Email
Jan 23, 2002
1:39 am
211
Does anyone have the low down on handling a drag event from the properties window? Appreciate any suggestions. Richard...
Richard
richardadleta
Offline Send Email
Jan 23, 2002
4:14 pm
212
Hi. I got past my newbie stupid questions...hopefully. I have spent hours last night trying to add a comment line above a variable and function in the .vb code...
rd_bigdog
Offline Send Email
Jan 24, 2002
2:33 pm
213
One approach is locate the codevariable startpoint.line -1, move to the previous line using TextDocument.selection.gotoline() and insert a new line of text...
blacksheep_dz
Offline Send Email
Jan 24, 2002
6:55 pm
214
Hey .net add-in GURU Why don't you use the propertygrid control that comes with .net and place it into a usercontrol and replace of the default .net property ...
blacksheep_dz
Offline Send Email
Jan 24, 2002
7:42 pm
215
Thats a great idea!! Thanks for the tip. Richard ... From: blacksheep_dz [mailto:blacksheep_dz@...] Sent: Thursday, January 24, 2002 1:43 PM To:...
Richard
richardadleta
Offline Send Email
Jan 24, 2002
7:45 pm
216
Its a shame that we're only 5 feet away and we have to use this newsgroup to communicate. Its great working for the borg. P.S. turn your music down. Its loud...
blacksheep_dz
Offline Send Email
Jan 24, 2002
7:51 pm
Messages 187 - 216 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