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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1963 - 1992 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1963
I would like to make an add-in that would list every control on a selected form. I am not sure where to begin. Can anyone help?...
ericfleet1973
Offline Send Email
Aug 2, 2004
4:49 pm
1964
Hello, First thank you for having this group, it is a great idea! Second I work as a software engineer, mostly C#/asp.net stuff. I got this requirements, and...
Patrick Butler Monterde
blueglaciertech
Offline Send Email
Aug 3, 2004
2:02 am
1965
Supposing that you want to do it from a macro or add-in, which is the purpose of this group, you would have to: - Get the ToolBox object: EnvDTE.ToolBox...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 3, 2004
12:23 pm
1966
I am currently looking for the same thing so if you find something please post it....
em0reau
Offline Send Email
Aug 3, 2004
2:03 pm
1967
Since this question was becoming a FAQ and it is far from trivial, I have just written this MSDN KB article: HOWTO: Manipulating controls of Windows forms from...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 3, 2004
2:34 pm
1968
Thanks! I look forward to digging through the code a bit more. hadn't seen this same request before, though. Perhaps my search criteria was worded differently....
ericfleet1973
Offline Send Email
Aug 3, 2004
3:43 pm
1969
I donīt know, I havenīt had much time to play with VS 2005... Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ From: ericfleet1973...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 4, 2004
7:30 am
1970
I wrote a program in Visual Basic .Net then created a Setup Project to install it. Now I need the program to automatically run after the setup is completed....
Jason
philotech
Offline Send Email
Aug 4, 2004
2:50 pm
1971
Great article. Any ideas on how to loop the Components collection if I am not using the ActiveDocument.ActiveWindow ? I use the...
em0reau
Offline Send Email
Aug 4, 2004
3:02 pm
1972
It is assumed that add-ins operate on the loaded project in the IDE (files of the project, active window, etc.), and the extensibility model is for that, so I...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 4, 2004
3:22 pm
1973
I try to use much the same thing but not in a add-in. I try to do it for a standalone application that can open any Assembly. In the last hour, I found out how...
em0reau
Offline Send Email
Aug 4, 2004
7:17 pm
1974
The Text property should return that info for menu items ... Am I missing anything? Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ From:...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 5, 2004
12:23 pm
1975
hi, i m tryong to cause an event tick very fastly and continuously, i did this by using timer control but what i m facing that even at timer1.interval= 1 it...
razher2000
Offline Send Email
Aug 9, 2004
7:39 pm
1976
Hi, Couldn't find an answer anywhere so would appreciate any help. Can unsafe code be used in an add-in that targets VS.NET 2002, 2003 and 2005? Cheers, ...
micheal_jor
Offline Send Email
Aug 9, 2004
7:57 pm
1977
Hello, I need to add a separator to my submenu and I am unable to find how to do it. Does anyone know how? Thanks Sangeeta...
Sangeeta Singh
singhsangeeta88
Offline Send Email
Aug 9, 2004
8:56 pm
1978
... Considering that add-ins can be written in ATL/COM/C++, I'd bet a lot that the answer is "yes". -- Arild AnkhSVN: http://ankhsvn.tigris.org Blog:...
Arild Fines
arild_fines
Offline Send Email
Aug 9, 2004
11:06 pm
1979
CommandBarControl.BeginGroup = True Regards, Carlos J. Quintero (Visual Developer - .NET MVP) _____ From: Sangeeta Singh [mailto:singhsangeeta88@...] ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 10, 2004
7:06 am
1980
Hi Carlos, I think you follow this Yahoo Group more closely than MS Groups and hence I am pasting all our mails here and lets continua the discussion here. ...
Upadrasta V N. Pardh...
uvnpsaradhi
Offline Send Email
Aug 10, 2004
12:29 pm
1981
OK, I was partially wrong and it seems that using SelectionContainer you can get the selected item in the Class View for some kind of projects. See: ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 11, 2004
3:31 pm
1982
Oh. Thanks a Lot. I think I got answer. I am using for VB.NET Project and hence my AddIn couldn't recognize the SeelctionContainer Items. Thanks a Lot ...
Upadrasta V N. Pardh...
uvnpsaradhi
Offline Send Email
Aug 11, 2004
3:53 pm
1983
Hi, I'm trying to build an add-in with C++. I used the AddIn Wizard. But after compiling I get no icon to run it. So I don't even get to step in the Exec...
niko1778
Offline Send Email
Aug 12, 2004
10:01 pm
1984
Hi Andreas, You can use EditPoint in Text Editor Object Model to insert text at the current cursor in the active window. Try the following macro: Sub...
Huizhong Long
huizhonglong
Offline Send Email
Aug 13, 2004
1:26 am
1985
Anyway Thanks for your answer. I have another question related to the .NET Extensibility Model and use of Debugger to assign to my process Programmatically. I...
Upadrasta V N. Pardh...
uvnpsaradhi
Offline Send Email
Aug 13, 2004
2:49 pm
1986
Hi All, Just joined and already I have a question. I wasn't able to find it in the past messages. Basically I have created a Tool Window add in with two...
rory925011
Online Now Send Email
Aug 13, 2004
3:09 pm
1987
When you create a tool window, you pass a GUID to identify that tool window. You can use this GUID to find your tool window: dim win as Window =...
Craig Skibo
craigs_ms
Offline Send Email
Aug 16, 2004
6:04 pm
1988
Thanks for that Craig, I've seen that example but only in VB.NET and am a C# programmer. Do you have the C# styntax by any chance I've tried converting it...
RORY STREET
rory925011
Online Now Send Email
Aug 17, 2004
8:51 am
1989
The compiler is telling you that applicationObject has not been initialized and will be null when using applicationObject.Windows blah blah .... You need to...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 17, 2004
9:03 am
1990
But if I am calling this code from a user control. How will I get the application object is there method I can use to set it? I understand that it is called...
RORY STREET
rory925011
Online Now Send Email
Aug 17, 2004
9:41 am
1991
The DTE object is passed to your addin from the host in the OnConnection method. From there, you need to pass it to whatever objects may need it... ...
Quintero Vivar, Carlo...
carlos_j_qui...
Offline Send Email
Aug 17, 2004
9:52 am
1992
Put a property in the User Control and pass this Object to that User Control by means of the property. For Ex; if your user control is MyUserControl; I"ll have...
Upadrasta V N. Pardh...
uvnpsaradhi
Offline Send Email
Aug 17, 2004
9:53 am
Messages 1963 - 1992 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