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 to share photos of your group with the world? 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 1356 - 1385 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1356
... 2002. ... Try setting HKCU\Software\Microsoft\VisualStudio\7.1\Addins\Keymap.Connect\CommandPreloa d to 1 and restarting VS.NET. This will force the addin...
Arild Fines
arild_fines
Online Now Send Email
Nov 1, 2003
1:29 pm
1357
... <arild.fines@b...> ... KeyMap ... guessing ... but ... and ... Add- ... is the ... mspress, ... VS.NET ... with ... Am ... ...
keenerkrew
Offline Send Email
Nov 1, 2003
7:26 pm
1358
Does anybody know how to enable xp styles with a gui addin, I have tried several methods, such as manifest files and setting Application.EnableVisualStyles(); ...
David Acres
acresd
Online Now Send Email
Nov 3, 2003
11:16 am
1359
Since the addin is hosted inside DEVENV, it's not its own application and therefore can't have a manifest file. I guess you would have to set the manifest on...
Oz Solomon
wndtabs
Offline Send Email
Nov 3, 2003
12:22 pm
1360
Oz, Well that explains that. Cheers, Dave. Oz Solomon <osolo@...> wrote: Since the addin is hosted inside DEVENV, it's not its own application and ...
David Acres
acresd
Online Now Send Email
Nov 3, 2003
12:53 pm
1361
... Chris Sells has a .manifest for devenv.exe here: http://www.sellsbrothers.com/tools/ -- Arild AnkhSVN: http://ankhsvn.tigris.org Blog:...
Arild Fines
arild_fines
Online Now Send Email
Nov 3, 2003
12:55 pm
1362
Hi folks, I perfectly know how to write an add-in to dynamically generate code, incorporate the generated code into a new file and add this file to the...
Christian Weyer
cweyer74
Offline Send Email
Nov 3, 2003
4:05 pm
1363
... You have to handle it in your QueryStatus method, which will be called for every one of your menu items every time the context menu is about to be shown....
Arild Fines
arild_fines
Online Now Send Email
Nov 3, 2003
5:32 pm
1364
Thanks for that - will try it. And how do I add a menu item for a project item? Just like only for a .cs file? Thanks, Christian...
Christian Weyer
cweyer74
Offline Send Email
Nov 3, 2003
7:22 pm
1365
... ProjectItem vs Project vs Solution is pretty much the granularity you get. If you want it only for a .cs file, you need to check for that in the ...
Arild Fines
arild_fines
Online Now Send Email
Nov 3, 2003
7:46 pm
1366
... you get. ... the ... OK, I can check perfectly for a certain file type (BTW, is there any better approach than comparing with the extension? E.g. for a...
Christian Weyer
cweyer74
Offline Send Email
Nov 4, 2003
10:50 am
1367
Oops - as usual. Five minutes later I figured it out. Now my addin works the way it is supposed to do! ;-) Thanks again, Christian...
Christian Weyer
cweyer74
Offline Send Email
Nov 4, 2003
11:10 am
1368
Hi all Ok here is my code so far Dim Selection As TextSelection = CType(DTE.ActiveWindow.Selection, TextSelection) Dim SelectionPoint As TextPoint =...
Rory F. Becker
Rory.Becker@...
Send Email
Nov 5, 2003
12:36 pm
1369
Have I maybe started from the wrong place? Rory ... http://www.c1tracking.com/l.asp?cid=5511 http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/nhFolB/TM ... ...
Rory F. Becker
Rory.Becker@...
Send Email
Nov 5, 2003
2:19 pm
1370
Hi Jeremy and all, I am using the shim control generated by the Extreme Simplicity tool and I have found a couple of problems. This post is for the first. The...
carlos_j_quintero
carlos_j_qui...
Offline Send Email
Nov 5, 2003
5:20 pm
1371
The second problem is that the Return (or Enter) key does not work. To reproduce it, add a button control to any usercontrol and add a MessageBox to its Click...
carlos_j_quintero
carlos_j_qui...
Offline Send Email
Nov 5, 2003
5:21 pm
1372
Carlos, I posted about the VK_RETURN and it does pass on the return key. However, I was using a RichTextBox and the KeyDown event. Basically I was not getting...
VinceRothwell
Offline Send Email
Nov 5, 2003
10:10 pm
1373
Hi All, I have an AddIn written using VS 2003. I have tried to use it with VS 2002 but get an 80131522 error. I believe that this is caused by an inconsistency...
VinceRothwell
Offline Send Email
Nov 5, 2003
10:24 pm
1374
Hi Vince, Yes, adding VK_RETURN to PreTranslateAccelerator makes to work the KeyDown event, but this does not solve the problem completely: - The root problem...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Nov 6, 2003
8:57 am
1375
I forget where I got the information, but as far as I know, it is just not possible to compile an AddIn with VS 2003 and load it with VS 2002. Phil [Non-text...
Phil Jollans
pjollans
Offline Send Email
Nov 6, 2003
5:00 pm
1376
... You cannot compile a managed addin in 2003 and have it load in 2002, since anything built in 2003 will bind to the 1.1 framework which is not supported by...
Arild Fines
arild_fines
Online Now Send Email
Nov 6, 2003
5:31 pm
1377
Thanks for your responses. I have looked into it and whilst it maybe possible by changing the manifest for devenv.exe to force it to use 1.0 for 1.1...
VinceRothwell
Offline Send Email
Nov 7, 2003
9:32 am
1378
Another option that I have used in the past is to simply copy your classes from the 2003 solution into your 2002 solution/project. Vola. /z ... it ... a ... we...
Dennis R. Zweigle
blacksheep_dz
Offline Send Email
Nov 7, 2003
2:07 pm
1379
Hello all, I've been browsing through the archives this morning trying to piece together a complete answer on docking my ToolWindow. Essentially, I see some...
Matthew Raymer
maraymer_1970
Offline Send Email
Nov 10, 2003
10:08 am
1380
Mathew, VS does remeber where a toolwindow was docked and should always appear where it last was (floating, AutoHidden, Docked). This is done by the using the...
VinceRothwell
Offline Send Email
Nov 10, 2003
9:13 pm
1381
Vince, Thanks. That was practical and enlightening - it gives me something to play and search further with. I'm now on a different problem: I've moved my...
Matthew Raymer
maraymer_1970
Offline Send Email
Nov 11, 2003
12:09 am
1382
Matthew, The Control floating away from the ToolWindow is caused because the ToolWindow is actually hidden (Not Visible) when the UserControl is added to the...
VinceRothwell
Offline Send Email
Nov 11, 2003
12:13 pm
1383
Vince, Thanks again! I'm using the shim directly off the MS site. So, how should I handle adding the control to the ToolWindow? Or, should I just switch to...
Matthew Raymer
maraymer_1970
Offline Send Email
Nov 11, 2003
12:41 pm
1384
How can i tell if a document / text document is dirty. I know the Project object has a public dirty flag, but i havent found one for a document object. But i...
John
rainerclimbing
Offline Send Email
Nov 11, 2003
7:01 pm
1385
Is there an API, .Net or otherwise, that will give the the X and Y cordinates of the active cursor on the open document?...
John
rainerclimbing
Offline Send Email
Nov 11, 2003
8:42 pm
Messages 1356 - 1385 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