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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 3433 - 3462 of 3878   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3433
Hi In VS2003 we had created our own package project with our own project type that loads up a web project as a nested project. In VS2005 I'm looking to do...
axcope
Offline Send Email
Mar 1, 2006
10:30 am
3434
Hi Carlos, ... OK, thanks for the hint! (i.e. this folder is only created on first VS.NET 2005 activation after installation?) ... Yes, I see Extensibility...
Shamil Salakhetdinov
shamil_salak...
Offline Send Email
Mar 1, 2006
11:49 am
3435
HI Shamil, ... I think so. It would be overkill for VS to create that folder for each user account before you start VS for that account. ... I think both. I am...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 1, 2006
12:24 pm
3436
Hi Carlos, ... Yes, that's right, but it could have been created for the user, who installs VS.NET. Still to check that somehow, somewhere with virgin VS.NET...
Shamil Salakhetdinov
shamil_salak...
Offline Send Email
Mar 1, 2006
12:49 pm
3437
Hi Shamil, ... Did you follow this step?: To use transparency you need to use a special color: select the lime green color in the Colors toolwindow, click the...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 1, 2006
2:12 pm
3438
... Yes, Carlos, you're right that was the case - it works great now, thanks! Shamil ... From: "Carlos J. Quintero" <carlosq@...> To:...
Shamil Salakhetdinov
shamil_salak...
Offline Send Email
Mar 2, 2006
2:08 am
3439
Hi, I am creating an Addin for Microsoft Office / Excel / PowerPoint. For all the three application the Addin will be same. How will I identified from which...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 2, 2006
4:14 pm
3440
Hi Anil, The OnConnection method receives a "Application As Object" parameter that you must cast to the proper type. If Application.GetType().Name returns...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 2, 2006
4:53 pm
3441
Hi, I gone through your article. I am using the following code for following your code. I am using vs2003. DTE objTempAppObject = DTE(application); Window...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 3, 2006
5:21 am
3442
If your first line of code is: DTE objTempAppObject = DTE(application); then your add-in will only work with Visual Studio, not with any Office app. You need...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 3, 2006
8:54 am
3443
I am creating a addin which will work in Word / Excel / PowerPoint. I am creating it in c#. How would I know whether addin is invoked from Excel / Word or...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 3, 2006
9:35 am
3444
Hi, I am not creating the addin for Visual Studio. I am only creating it for Word / Excel and powerpoint. Now in addin I want to know the application type. In...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 3, 2006
10:34 am
3445
Why it is not compiling?...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 3, 2006
10:42 am
3446
Here is the OnConnection() method public void OnConnection(object application, Extensibility.ext_ConnectMode connectMode, object addInInst, ref System.Array...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 3, 2006
10:48 am
3447
The TypeOf statement of VB.NET and the typeof statement of C# are quite different. So, try this: Microsoft.Office.Interop.Excel.Application m_objExcel; ...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 3, 2006
11:13 am
3448
Hello, I am using VCFileCodeModel to iterate over code elements by first getting CodeElements collection, then recursively processing each CodeElement and...
vladfein
Offline Send Email
Mar 3, 2006
9:02 pm
3449
Hi Vlad, C++ has some problems with the code element hierarchies. I reported something similar: Bug Details: FileCodeModel.CodeElements incorrect for some C++...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 4, 2006
10:58 am
3450
Hi, I want to override open button click event of Excel / Word. How can I get control over that? Thanks [Non-text portions of this message have been removed]...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 4, 2006
11:46 am
3451
Hi Carlos, thank you very much for the info. I don't think that you reported the same problem, so I've filed a bug there myself: ...
vladfein
Offline Send Email
Mar 4, 2006
7:32 pm
3452
Hi, First you need to get the CommandBar, then you must get the CommandBarControl, cast it to CommandBarButton and then add an event handler to its Click...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 5, 2006
3:15 am
3453
Hi, I am doing the same think but perhaps I do not know the key for Open button. Here is the code that I am using. object oActiveExplorer oActiveExplorer= ...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 5, 2006
10:32 am
3454
Hi Vlad, This is not a clear solution for your problem. However, it is interesting to see that you can use the global function or variable in C#. I never...
Terry Go
terry_go
Offline Send Email
Mar 5, 2006
2:16 pm
3455
Rather than guessing blindly, you can iterate the objToolbar.Controls collection to see the captions /names of the controls and then you will see more clearly...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 5, 2006
2:23 pm
3456
Hi, Actually I have tried it. Here is the for loop that I have used . for(int i = 0 ; i < objToolBar.Controls.Count ; i++) { string str =...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 5, 2006
3:47 pm
3457
Hi, There is one more method FindControl() in Controls. But It also requires the id of the button. How I can get the ids of the different button from Excel / ...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 6, 2006
4:06 am
3458
Why canīt you iterate? What errors are you getting? The second case should be: foreach(CommandBarControl objcontrol in objToolBar.Controls) Best regards, ...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 6, 2006
9:38 am
3459
Hi, Here is the for loop that I am using. The code is not compiling and throwing this error. foreach statement cannot operate on variables of type ...
Anil Kumar Gupta
anil_gupta29
Offline Send Email
Mar 6, 2006
10:26 am
3460
Use foreach(CommandBarControl objControl in objToolBar.Controls) Best regards, Carlos J. Quintero MZ-Tools: Productivity add-ins for Visual Studio You can...
Carlos J. Quintero
carlos_j_qui...
Offline Send Email
Mar 6, 2006
10:34 am
3461
Hi Terry, I thought I've mentioned that - it is VC++, not C#. Sorry... Vlad...
vladfein
Offline Send Email
Mar 6, 2006
6:54 pm
3462
Oops! Sorry for the confusion... ... http://lab.msdn.microsoft.com/ProductFeedback/viewfeedback.aspx? ... ...
Terry Go
terry_go
Offline Send Email
Mar 7, 2006
4:33 am
Messages 3433 - 3462 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