New Post: ClickOnce Install still requires interop assembly to be in GAC
hey men, the problem is i have no experience with clickonce (because visual studio freeze on all my systems while compiling with clickonce. [i guess vs are not ready to handle missing network...
View ArticleNew Post: Worksheet: Klasse nicht registriert (Ausnahme von HRESULT:...
Hi, I have a strange problem I can't resolve. On my local maschine an some others my code is working fine. If I try to use it at a Windows 2003 Server I have a problem to get an instance of Worksheet....
View ArticleNew Post: Worksheet: Klasse nicht registriert (Ausnahme von HRESULT:...
looks for a security issue. make sure your code is running in a local desktop session. otherwise, give closedxml a try: https://closedxml.codeplex.com *Sebastian
View ArticleNew Post: NuGet
@CaioProiete have a look to the deployment tablehttp://netoffice.codeplex.com/documentation (scroll down) to show the correct dependencies. ( MSProject is missing in the deployment table. its:...
View ArticleNew Post: NuGet
Hi Sebastian, Just so I understand: You are saying I should include VBIDEApi in the MSProject NuGet packages? I already include all the others described in the deployment table: Cheers, Caio Proiete
View ArticleNew Post: NuGet
ooops, now i see MSProject is part of the deployment table and its wrong! MSProject use the VBIDEApi too. my bad, i want fix the documentation. please add VBIDEApi to the MSProject dependencies....
View ArticleNew Post: NuGet
@Sebastian: I've just checked and we are good... VBIDEApi is already included in all packages (as they depend on NetOffice.Core, which includes NetOffice.dll, OfficeApi.dll, and VBIDEApi.dll Cheers,...
View ArticleNew Post: How to Create different CustomUI from different xml file for Office
Need different CustomUI from different xml file, but Net Office defines the CustomUI attribute in CustomAtttibute. How to load the xml file in the New event? Best Regards.
View ArticleNew Post: How to Create different CustomUI from different xml file for Office
Overwrite the GetCustomUI method {(public virtual string GetCustomUI(string RibbonID)} to load a schema at hand. *Sebastian
View ArticleNew Post: How to Create different CustomUI from different xml file for Office
Thanks so much. Net Office is really a great job~
View ArticleNew Post: StackOverflow Exception in CurrentDomain_AssemblyResolve in...
I downloaded the 1.7.2 code and opened the Google Translation solution. Set Sample.ExcelAddin as the startup and set Excel 2013 (Office15) exe to start when the project loaded. When it loads it...
View ArticleNew Post: StackOverflow Exception in CurrentDomain_AssemblyResolve in...
holy shit ... which .net framework ?
View ArticleNew Post: StackOverflow Exception in CurrentDomain_AssemblyResolve in...
.NET 4.5.1, VS 2012
View ArticleNew Post: StackOverflow Exception in CurrentDomain_AssemblyResolve in...
I cant reproduce the problem at the moment. What i see in your screenshot is the problem occours in ClassicUI example addin.dll I create a scenario with 3 loaded example addins(IExtensibility) and...
View ArticleNew Post: Howto add an Excel chart series programatically
Please can you help me? In VBA what I want would be: ActiveSheet.Shapes.AddChart2(240, xlXYScatterSmooth).Select ActiveChart.SeriesCollection.NewSeries ActiveChart.FullSeriesCollection(1).Name =...
View ArticleNew Post: StackOverflow Exception in CurrentDomain_AssemblyResolve in...
It looks like this was happening because I had two addins loading that were NetOffice based. Removing one of them made the exception go away.
View ArticleNew Post: StackOverflow Exception in CurrentDomain_AssemblyResolve in...
i agree but why its not occurs on my test systems? (i have much more NO based addins running) i create a filter in assembly resolve event now to avoid resolve same assembly more than once. if this...
View ArticleNew Post: Howto add an Excel chart series programatically
Solution appears to be to call SeriesCollection.Add with a dummy range parameter. Dim sc As SeriesCollection = chartObj.Chart.SeriesCollection Dim series As Series = sc.Add(sht.Range("A2:A4"))...
View ArticleNew Post: The type or namespace name 'NetOffice' could not be found (are you...
Hi, I am referring the required NetOffice dlls in a Windows service application to convert docs to pdf. 'Embed Interop Types' property is missing on NetOffice and all other referred NetOffice dll's...
View Article