New Post: Sending message with Outlook
hello, go to the references and set the option 'embedd interop types' to false for all NetOffice assemblies. *Sebastian
View ArticleNew Post: EnableMessageFilter
Das is wohl so ziemlich das gleiche, wie gesagt ich kenn nur das alte VB6 noch aus der Erinnerung aber hab mit VB.NET bisher nur selten zu tun gehabt. Wenn ich dich richtig verstanden habe hat...
View ArticleNew Post: EnableMessageFilter
Korrekt :) Es gibt aber nicht für alle Funktionen in Visual Baisc Dot.NET eine vergleichbare Funktion, manche muss man sich einfach selbst schreiben, so wie z.B. für die VB6 Funktion "IsNumeric". Für...
View ArticleCommented Unassigned: Address Property of Range Object has no parameters...
I tried migrating my .NET application (Microsoft Excel Add-In) from NetOffice Release 1.4.1 to 1.6.0 (latest), and am experiencing an error with my code. Specifically, the Address property of the Range...
View ArticleCommented Unassigned: Address Property of Range Object has no parameters...
I tried migrating my .NET application (Microsoft Excel Add-In) from NetOffice Release 1.4.1 to 1.6.0 (latest), and am experiencing an error with my code. Specifically, the Address property of the Range...
View ArticleCommented Unassigned: Entirerow and Entirecolumn methods/properties not in...
Hi,I've just started using Netoffice and I've found that Entirerow and Entirecolumn properties/methods are not available from the range object. I use these to get a reference to the entire row/column...
View ArticleCommented Unassigned: Entirerow and Entirecolumn methods/properties not in...
Hi,I've just started using Netoffice and I've found that Entirerow and Entirecolumn properties/methods are not available from the range object. I use these to get a reference to the entire row/column...
View ArticleCommented Unassigned: Entirerow and Entirecolumn methods/properties not in...
Hi,I've just started using Netoffice and I've found that Entirerow and Entirecolumn properties/methods are not available from the range object. I use these to get a reference to the entire row/column...
View ArticleNew Post: Deployment/Installation
Hi I am creating a word add-in in visual basic express 2010 and would like to deploy the add in and create an msi file for the add on or equivalent. I have had a quick look at WiX Toolset and NSIS...
View ArticleNew Post: Workbooks.Open Method for csv file with delimiter
Hi, with Visual Basic this code works fine: With oSheet.QueryTables.Add(Connection:="TEXT;" & strInFile, Destination:=oRng) .Name = strTabName .FieldNames = True .RowNumbers = False...
View ArticleNew Post: Workbooks.Open Method for csv file with delimiter
the occurs in the first line? this line: object with_0 = workSheet.QueryTables.Add("TEXT;" + "", null); works fine for me. but you can't use 'object' in c# of course, you have to use Excel.QueryTable...
View ArticleNew Post: Deployment/Installation
you have to create a deployment project in your solution (not sure its supported in vb express) you find a vb addin deployment sample solution in the download section. Sebastian
View ArticleNew Post: Deployment/Installation
You cannot make a deployment project with the express editions. This could be a suggestion to develop in future editions of NetOffice Toolbox to have this functionality. The reason why I am going for...
View ArticleNew Post: Class not exists: NetOffice.OfficeApi.ComboBox
Hi there I'm about to access ActiveX controls by NetOffice. Using the following code:Excel.OLEObjects objs =...
View ArticleNew Post: Workbooks.Open Method for csv file with delimiter
This "howto" from microsoft:TEXT I solved my problem yesterday with:var _with1 = oSheet.QueryTables.Add(connection: "TEXT;" + modGlobalVar.glStrCVSFullPath, destination: oRng); _with1.Name =...
View ArticleNew Post: Outlook application.Quit
Is it necessary to call application.Quit() before calling Dispose()? My user wants to be able to have outlook always open. The application I am creating will then open a new message and add some...
View ArticleNew Post: Outlook application.Quit
its not necessary to call Quit() before. you can call Dispose() only but of course, the OutlookApi.Application instance is not usable any longer. if you do more as some lines of code then the first 3...
View ArticleNew Post: Is it safe to use NetOffice in an unattended non-interactive client...
its true, unattended automation is not recommend but in fact, many people use that. the most server people want generate reports or something like this. since 2007 the office .*x (docx,xlsx) based on...
View Article