From a window handle you can get to the object model using AccessibleObjectFromWindow with OBJID_NATIVEOM, at least for Microsoft Office applications. I don't...
604
sonaliDev <sonalid...
sonaliDev
Jan 16, 2003 6:22 am
Found it ms- help://MS.VSCC/MS.MSDNVS/vbcon/html/vbtskprovidinghelpinapplication.ht m...
605
blacksheep_dz <bla...
blacksheep_dz
Jan 17, 2003 5:01 am
In the CodeEnum where do I find: 1) A member's value, if one is assigned 2) An enumeration39;s DataType, there are 4 DataTypes: Byte, Integer, Long, Short...
606
Juan Esteban Suár...
jesuarezuy
Jan 21, 2003 1:45 am
I've a problem when i install the addin. The error is "Class not registered". The addin have two user control's and i use them in a tool window. I think that...
607
lapshin_d <lapshin...
lapshin_d
Jan 21, 2003 3:25 pm
Juan, Unfortunately you didn't specify how do you display your user controls. There are two common ways - by using the Microsoft shim control and by making the...
608
Juan Esteban Suáre...
jesuarezuy
Jan 21, 2003 6:45 pm
Dmitriy , Thanks for your reply. Here is the code that i'm using to display the tool window. The UserControl is in the same library of the addin. I also tried...
609
Juan Esteban Suáre...
jesuarezuy
Jan 21, 2003 6:47 pm
I ommited that the installation creates a file (myAddin.InstallState) in the application directory with the following content: <SOAP-ENV:Envelope...
610
lapshin_d <lapshin...
lapshin_d
Jan 22, 2003 4:52 pm
Juan, You need to set the Register property to COM for the assembly itself, and set it to COMSelfReg for the DLL containing the VSUserControlHost. Hope this...
612
Juan Esteban Suáre...
jesuarezuy
Jan 23, 2003 4:52 am
Dimitry, I will try your suggestion. Thanks again. Juan ... De: lapshin_d <lapshin_d@...> [mailto:lapshin_d@...] Enviado el: miércoles, 22 de...
613
Bob Sampson
harlequinlm
Jan 25, 2003 9:06 pm
New subscriber to the group, kind of an interesting one since it's another path I'm starting to teach myself. I'm actually coming into the group with a...
614
Brian Johnson (PRESS)
brianjjo
Jan 26, 2003 7:18 am
Hi Bob, First, in the Configuration Manager dialog box (from the Build menu), you can choose which projects you want to build and which versions. You can even...
615
Pete Brown
psychlist1972
Jan 26, 2003 3:22 pm
Bob, look at Enterprise Templates. With those you can enable/disable individual menu options, set project/solution folder structure, restrict what types of...
616
Bob Sampson
harlequinlm
Jan 26, 2003 8:02 pm
Thanks for the quick answers :) At work the SourceSafe server is still in development, actually more like it's in hiatus right now. I'll look into Enterprise...
617
Pete Brown
psychlist1972
Jan 26, 2003 8:15 pm
I can't recommend enough that you move Ssurce Safe to the *top* of your priority list. It doesn't even need its own server, just stick it on an available file...
618
Philo
philo589
Jan 26, 2003 8:27 pm
Or get CVS... [g] Philo...
619
Kollen Glynn
kg_groups
Jan 29, 2003 7:29 pm
I am trying to obtain the selected project in solution explorer to add references, but am having trouble with the case where the reference folder or a...
620
Craig Skibo
craigs_ms
Jan 29, 2003 9:02 pm
Have you tried using DTE.ActiveSolutionProjects? This will return an array of Project objects that have either the project or one of the items within the...
621
Kollen Glynn
kg_groups
Jan 29, 2003 11:24 pm
commandBars["Project"] adds a menu under the project context menu in Solution Explorer which I wanted but I also need to add a menu under the IDE 'Project39;...
623
David Jeschke
jeschkede
Jan 30, 2003 12:27 am
I'm sorry for the off-topic post. I deleted the message from the archives and kicked the posting member out of the group. If we get many more off-topic...
624
Craig Skibo
craigs_ms
Jan 30, 2003 2:13 am
Here is code that will display the name of the second control on the Projects menu: Sub ProjMenu() Dim cmdbar As Microsoft.Office.Core.CommandBar Dim...
625
psains <7qnft1j02@...
psains
Jan 30, 2003 8:40 am
Hi, I have a user control (hosted in a VSUserControlHost), and I need to let the user drag items from the toolbox onto my user control. The two questions are:...
626
lapshin_d <lapshin...
lapshin_d
Jan 30, 2003 4:35 pm
Paul, If you want to implement something like custom form designer, I am afraid a simple tool window with a user control is not enough. It is a deeper level of...
627
Kollen Glynn
kg_groups
Jan 30, 2003 5:24 pm
Cool, thanks. Are there specific events I can listen for, or a sub menu than I can add to that will ensure my menu only shows up when ever the menu items:...
628
Craig Skibo
craigs_ms
Jan 30, 2003 7:53 pm
Inside the QueryStatus method for your command, you could call out to the UIHierarchy object for the solution explorer, and check to see if the References node...
629
Kollen Glynn
kg_groups
Jan 30, 2003 10:25 pm
All of a sudden I am getting this error message in OnConnection when I call EnvDTE.Commands.AddNamedCommand but I'm not calling it twice or anything. Anyone...
630
Craig Skibo
craigs_ms
Jan 30, 2003 10:36 pm
Your command is left over from a previous run of your Add-in. Close all instances of VS, and from a command prompt run the command devenv /setup. This will...
631
neibala <nei@...>
neibala
Jan 31, 2003 4:35 pm
As it would be the code in vb.net to execute the store procedure below, where it comes back me her: 1) amounts of registrations. 2) registration satisfies the...
632
Kollen Glynn
kg_groups
Jan 31, 2003 6:23 pm
Is there any way to enumerate controls on a VB or C# form (for example) from within an add-in? I'd like to be able to go through a form and convert all the...
633
Craig Skibo
craigs_ms
Jan 31, 2003 7:13 pm
The automation samples web site at http://msdn.microsoft.com/vstudio/downloads/samples/automation.asp ...
634
Kollen Glynn
kg_groups
Jan 31, 2003 8:09 pm
Ok I have successfully added three menus items including one to the MenuBar's Project menu. The only problem is that the Project menu now appears when the IDE...