New Post: Register C# EventHandler with OLE TextBox int PowerPoint presentation
okay then, This is a normal textbox(no OLE action so far). Shame on me: I currently figure out how i can reprocuce the scenario, because i can't find the developer tools in PP 2010 with the ugly ribbon...
View ArticleNew Post: Register C# EventHandler with OLE TextBox int PowerPoint presentation
here is a link , that describes how you can activate the developer-tools. I tried to mail my demo-presentation to you, but I got a DNS-error...
View ArticleNew Post: Excel ActiveWorkbook null
I am trying to read the current Workbook in Excel. I call: Excel.Application excelApplication = Excel.Application.GetActiveInstance(); Excel.Workbook currentWorkBook = excelApplication.ActiveWorkbook;...
View ArticleNew Post: Deployment Outlook addin VS 2013 for Office 2000-2013
Hello, I have got almost the same issue as MariChristine, i want to deploy my ribbon for outlook. At the moment the ribbon work and can be used in my own outlook, when i generate the solution in VS2012...
View ArticleNew Post: Deployment Outlook addin VS 2013 for Office 2000-2013
please explain how you register the addin manually? (gacutil/regasm?) and your used NetOffice version. *Sebastian
View ArticleNew Post: Excel ActiveWorkbook null
GetActiveInstance() gives you the first instance in memory. may you have multiple instances in memory. foreach(var item in Excel.Application.GetActiveInstances()) { Console.WriteLine("Book: {0}",...
View ArticleNew Post: Deployment Outlook addin VS 2013 for Office 2000-2013
I use the latest version of NetOffice. I didn't used anything special to install the addin in outlook. When i said "manually" i mean that i tried to install the dll from the option menu in outlook.
View ArticleNew Post: Register C# EventHandler with OLE TextBox int PowerPoint presentation
DNS-error.. oops! [wrong]public[at]sebastian.web.de[/wrong] [correct]public.sebastian[at}web.de[/correct] Here is my current research result so far: The best way to catch the focus events here is to...
View ArticleNew Post: Deployment Outlook addin VS 2013 for Office 2000-2013
Hi, Sorry, I worked on other things... I have the latest NO version, the one I gave you was the Toolbox's version. Sorry for the mistake. I'd like to know how to make generate a msi deployer that will...
View ArticleNew Post: Deployment Outlook addin VS 2013 for Office 2000-2013
Just as MarieChristine, I am looking for the same tool, a msi which can install the ribbon on enduser's computers.
View ArticleNew Post: Register C# EventHandler with OLE TextBox int PowerPoint presentation
It works, thanks a lot! I just used your example and hacked a small and dirty demo app. Since I couldn't find a LostFocus event, I used the Change event and it worked fine. Thanks for your great help!...
View ArticleNew Post: StackOverflow Exception in CurrentDomain_AssemblyResolve in...
Hi Sebastian, We've seen this with an out-of-process application that accesses Excel through COM. The log (enabled with your code above) was of the form: NetOffice Core.Initialize() NO Version:1.7.2.0...
View ArticleNew Post: Deployment Outlook addin VS 2013 for Office 2000-2013
An Office addin is a COM component (except for document-based addins) You have to register a COM component on the target system in any case. You can do this at hand with regasm.exe or let the installer...
View ArticleNew Post: Configuration file (App.config).
Hi I love the project, it's the second add-on that i'm creating using netoffice and i really love it. However i have a problem with configuration file. I'm trying to use SQL Compact Edition in the...
View ArticleCreated Unassigned: IncludeRecurrences does not work correctly in the Outlook...
When reading calendar appointments from Outlook, there's an option called "IncludeRecurrences" that should add all future recurrences to the list of items. For example: if I have a recurring...
View ArticleCommented Unassigned: NetOffice.OutlookAPI.Items.Sort() is erroring with an...
When reading calendar appointments from Outlook, there's an option called "IncludeRecurrences" that should add all future recurrences to the list of items. For example: if I have a recurring...
View ArticleCreated Unassigned: System.InvalidCastException as soon as NetOffice Excel...
I have an Excel Addin using Excel-DNA. I recently update my code to switch from Interop to NetOffice.My code all compiles fine, but when I start the add-in, I get this exception on the first line of...
View ArticleNew Post: Copy Tables from Doc to Excel without using clipboard
I had couple of word doc file containing multiple tables in it. My task was to convert them [ appending top down ] to xls. I had used NetOffice with C# for the same. For that I created Excel App and...
View ArticleCommented Unassigned: System.InvalidCastException as soon as NetOffice Excel...
I have an Excel Addin using Excel-DNA. I recently update my code to switch from Interop to NetOffice.My code all compiles fine, but when I start the add-in, I get this exception on the first line of...
View ArticleCommented Unassigned: Application.GetActiveInstance throws ArgumentException...
From stack trace:"System.ArgumentException was caught HResult=-2147024809 Message=component Source=System StackTrace: at System.ComponentModel.TypeDescriptor.GetDescriptor(Object component, Boolean...
View Article