| grabing functions from forms (3 replies) |
| microsoft.public.dotnet.vsa |
| I have a second form that has a fairly elaborate function on it, i would love to open that function up to being run by the VSA engine. How would I do that? Thanks, Cade |
|
| How to make an customized property-value-picker for the PropertiesWindow! (4 replies) |
| microsoft.public.dotnet.vsa |
| Hi, I am building a desktop application hosting the VBA. And now I get to a question. When the user edit the property value in the PropertiesWindow, How can I dropdown my own value picker when the user click at the draw down button of edit box , right to the property name. Just like the OLE COLOR and the OLE BOOL value pickers! I didn't know whether I have declared the question clearly. Anyone 's ... |
|
| Exception from HRESULT: 0x80133026 (2 replies) |
| microsoft.public.dotnet.vsa |
| Hello, Does anyone know what the following exceptions means, if I try to access the Items collection of the VSA DT engine as in the following C# code try { IVsaItem item null; item m engine.Items[codeItemName]; } catch(Exception e) { } Exception from HRESULT: 0x80133026. StackTrace " at Microsoft.Vsa.IVsaItems.get Item(String name) at Microsoft.VisualBasic.Vsa.VsaItems.get Item(String Name) at Mic... |
|
| OnEngineItemCreated missing information... (2 replies) |
| microsoft.public.dotnet.vsa |
| Hello, I've been trying to use the DesignTime class from Microsoft.Vsa.Hosting.DesignTime.dll I have one minor issue with: void OnEngineItemCreated(string engineMoniker, string itemName, Microsoft.Vsa.VsaItemType itemType, string addAction) { } It is missing one argument, the VsaItemFlag for the newly created item: without it, I cannot tell if the newly created was a class, a module, etc... If you... |
|
| CreateItem(...) not working as expected (2 replies) |
| microsoft.public.dotnet.vsa |
| Hello, I'm using the VSA DT engine. When I do an InitNew(), call CreateItem(...), then InitCompleted(...), everything works fine. Once the IDE is displayed, if I try to add a 'Reference' programmatically using code similar to the following: IVsaReferenceItem item; item (IVsaReferenceItem)(m engine.Items.CreateItem(referenceName, VsaItemType.Reference, VsaItemFlag.None)); item.AssemblyName referenc... |
|