I have a WPF application that runs as an add-in in another application.
(In this case it is COM based but I don't think it matters for the problem I have)
The application works fine when I run it standalone. When running as add-in there is a problem with resources.
First: (minor)
The "pack:" uri scheme is not available at all. I can w...
I am running into problems with an Outlook Add In I created. Somehow Outlook doesn't shut down properly. I've seen all the postings about using ReleaseComObject and such.
==== UPDATE ====
I tried the whole thing again, creating a new empty project in a new solution and now, after some time after shutting down Outlook the following Erro...
Hi All,
I have built a simple word addin that interacts with a company intranet.
For some reason, I cant seem t get the addin to read appSettings from its config file.
Is there something fundamental that doesn't allow office addins to read config files like a normal .Net application?
cheers
...
What refactoring tools similar to Visual Studio / DevExpress / Resharper are available for the Linux environment? Specifically I'm interested in the global renaming and method generation.
...
I want a code snippet editor for VS2008.
I'd like to just hit a hot key, bring up an editor, type in my snippet, run to my break point and step through.
I don't want to have to create a project, create an xml file, or even have to save my file if I don't want to.
I've looked through What plugin would you really like to have for Visu...
I am working i a big solution with much projects and items. It would come in very handy if there was an add-in in visual studio where i can group some items together according to their function. that way when i work on a specific functional task i can immediately see all items that i need.
Simple example:
I have a MVC project with
-Cus...
Hi,
I have been reading the MSDN documentation on VSPackages about the editors and so-forth, but I am failing to see anything in the samples or on MSDN regarding watching the built-in editors from a VSPackage. It all seems to be information on building custom editors.
I would like to receive notifications when the current selected file...
In my C# application, if I wanted to be able to download an "add-in" from our website and store it locally on the user's computer, and then run it (assume it's an assembly DLL or EXE, doesn't matter), I assume I can't store it in a subdirectory of my Program Files folder, and that's not really the right place for it since add-ins are use...
I have an Excel VBA add-in with a public method in a bas file. This method currently creates a VB6 COM object, which exists in a running VB6 exe/vbp. The VB6 app loads in data and then the Excel add-in method can call methods on the VB6 COM object to load the data into an existing Excel xls. This is all currently working.
We have sinc...
If I do this code in a clean addins template in Visual Studio 2008:
public void Exec(....
{
....
Application app = new Application();
MainWindows _mainWindow = new MainWindows();
_mainWindow.Initialize(@"C:\");
app.Run(_mainWindow);
....
}
Opens the window right first time, BUT I can't open the window the second time I ...
This is a very odd problem I've found. I have written and successsfully deployed a VSTO 3.0 Addin for Excel 2007. The problem is that the Tab for the Ribbon only shows up on NEW instances of Excel; the Tab doesn't display if I first open an already existing workbook. However, if I open a new instance of Excel, then open existing workbook...
I know vs2008 express didn't. I'm hoping this will change with vs2010. Anyone know? Link me?
Edit:
Anyone have a primary source? While "As far as I know" answers can be helpful, in this case it still leaves a possibility - which is exactly where I started.
...
Hi all!
I have written an Excel COM Add-In in C++ for automation of Excel with VBA. It contains an own dialog showing some general informations about the Add-In.
Now i create a button in Excel that opens the dialog. Leaving the dialog with the escape key leads to an Excel message that the script is being interrupted instead of just clos...
Hi there,
I'm trying to read the ActiveCell from within an Excel Add-in but not getting very far. Anyone any ideas?
Excel.Window W = this.Application.ActiveWindow as Excel.Window;
Excel.Range R = W.ActiveCell as Excel.Range;
MessageBox.Show(R.Value2.ToString());
The Exception being thrown on the last line is: -
Cannot obtain fiel...
Hi guys,
I have following problem:
at the stat of a project, many many images and cssclasses was created. None of them are have a correct name // spelling and / or a single touch of name-style.
Is there an AddIn for VS08 that allows me to rename easily images / cssclasses and searches all file assotiones and rename it to?
(The most of...
I am struggling to find a straight forward guide to creating office addins using VSTO and VB.net.
Specifically I would like to know how to be able to create a addin/ dll which can either be referenced from VBA in the form:-
Addin.method(argument) or Addin.property = X
Or which would install its own custom toolbars/ ribbon interface to...
I Have a shared add in (not VSTO) which I need to deploy via group policy to all users on the target machines.
My addin (targeting outlook specifically) accepts a command line switch which is the path of an intranet application so it can communicate with it - this all works fine on my development machine and also on a different machine ...
Is it possible to use an Add-in created for Visual Studio 6 in Visual Studio 2005. I know its possible for one to use COM Add-ins created for Visual Studio 2002/3 in Visual Studio 2005.
Unfortunately I don't have the Add-in project, else I would have tried to upgrade. I need the Add-in to work in VS2005 because it acts like a project wi...
the FolderRemoveEventHandler isn't global, it can just be used to notify when a folder is removed from the top level of a specific folders collection. I need an event to fire when any folder is removed/deleted - does such a thing exist?
...
I’m writing a plugin for word and would like to get the docx files as a byte array and send it to a web service.
Can I do this?
...