New Post: MS Project AddIn
Wie sieht denn dein CustomUI attribute aus? Typischerweise so: CustomUI("MyAssembly1.RibbonUI.xml") Wenn du den Namen/RootNamespace deines Assemblies geändert hast also von "MyAssembly1" zu...
View ArticleNew Post: MS Project AddIn
Das weiß ich. Ich habe standardmäßig einfach alles so gelassen wie es ist (und auch mehrfach anders probiert). Habe jetzt über CustomUI("MeinAssembly.RibbonUI.xml") hinaus auch CustomUI("RibbonUI.xml",...
View ArticleNew Post: MS Project AddIn
Ja ich weiss auch wieso glaube ich... Es rächt sich gerade das ich keine Lizenz für MS-Project habe und daher nicht ausreichend testen kann. Du springst da gerade unfreiwillig ein, entschuldige bitte....
View ArticleNew Post: MS Project AddIn
Kein Thema. Ich bin froh das du dir da die Zeit nimmst. Genau eine NullReferenceException. Ich teste nachher gerne den hot fix und geben Rückmeldung. Vielen Dank.
View ArticleUpdated Release: NetOffice 1.7.3 (Feb 25, 2015)
Download 1: NetOffice Release 1.7.3Includes:- Binaries .NET : v2.0, v3.0, v3.5, v4.0, v4.5- Tutorials/Examples in C#/VB.Net- Source CodeDownload 2: NetOffice Developer Toolboxrequires .NET 4(Client...
View ArticleNew Post: MS Project AddIn
Das Update ist jetzt verfügbar. (Der Upload hat sich leider recht lange hingezogen) Nun sollte es aber klappen :) Sebastian
View ArticleReleased: NetOffice 1.7.3 (Feb 25, 2015)
Download 1: NetOffice Release 1.7.3Includes: - Binaries .NET : v2.0, v3.0, v3.5, v4.0, v4.5 - Tutorials/Examples in C#/VB.Net - Source CodeDownload 2: NetOffice Developer Toolbox requires .NET 4(Client...
View ArticleUpdated Release: NetOffice 1.7.3 (Feb 25, 2015)
Download 1: NetOffice Release 1.7.3Includes:- Binaries .NET : v2.0, v3.0, v3.5, v4.0, v4.5- Tutorials/Examples in C#/VB.Net- Source CodeDownload 2: NetOffice Developer Toolboxrequires .NET 4(Client...
View ArticleNew Post: Office 2016 support
Hi Sebastian, NetOffice is a very good library to develop native office Addins. I have ported our VSTO-Addin to your library. Now we have fast start up times and we do not need the ugly VSTO-Runtime...
View ArticleNew Post: Is shared add-in possible?
hey men, hmm.. its hard to explain because i dont know your experience level.... the "normal" way to create an addin is to implement the IExtensibility2 interface. make it com visible and register for...
View ArticleNew Post: Office 2016 support
okay then! the 2016 preview is available for anyone? i need this to analyze the automation model and generate new assemblies. (a link was helpful but i want figure out today) *Sebastian
View ArticleNew Post: Office 2016 support
Hi, here is the link:https://connect.microsoft.com/office/Downloads/DownloadDetails.aspx?DownloadID=57208 But you must have a Microsoft account.
View ArticleNew Post: Office 2016 support
okay, now i have a connect accout. but you url doesnt works for me. it seems to be you have to pass some hurdles(and enable f****g...
View ArticleNew Post: just open an excel and read some cells
Hi, I just want to open an Excel that already exists and read some fixed cells of the third worksheet. for example: A5 and A6. Sorry for the stupid question. I have been searching how to do it and I...
View ArticleNew Post: just open an excel and read some cells
Try one of the examples in release folder. Just like: Excel.Application app = new Excel.Application(); var book = app.Workbooks.Add(); var sheet = book.Workseets[1] as Excel.WorkSheet; var value =...
View ArticleNew Post: Office 2016 support
state notification: waiting for microsoft agree my submission. btw: "Initialize: Outlook version is not defined. SetOutlookVersion." this is not a netoffice exception message. generaly. (I see no...
View ArticleNew Post: just open an excel and read some cells
Thanks for the fast answer. Yes, I have seen it in many examples. I thought it was creating an Excel from scratch. I mean to open an Excel, something like: app.open("c:\ExcelFile.xsl"); Joan
View ArticleNew Post: just open an excel and read some cells
nearly correct. its: Excel.Application app = new Excel.Application(); app.Workbooks.Open("C:\MyFiles\MyWorkbook.xls"); *Sebastian
View ArticleNew Post: Release information - 1.7.3
Hi! I just noticed that there was a new release 1.7.3. What has changed since 1.7.2? It would be very valuable if you can add some kind of release information on the website so one can easily see if...
View Article