- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
17 Posted Topics
Re: hi, Jim Thanks for the great work you've done for the forum.Exactly what I need. If I got any other problem ,I'll get back to you. cheers. | |
Re: Hi there, We could use the Microsoft.Office.Interop.Word.Table.Style property to apply one of the Word built-in styles to a table. table.Range.Font.Size = 8; table.set_Style("Table Grid 8"); I don't know how to create custom table style using Interop.Word, but i also found the following toturials which may help to achieve this task. … | |
Re: Not familiar with BarcodeLib, but I do have experiense with an easy-to-use Free Barcode API - http://freebarcode.codeplex.com/ which supports to generate and read PDF417 barcode as well as many othere types in Web Service. If you try to work with this component, I could definitely be of help. | |
Re: Thanks for the information. I have been searching this for a couple of days, and I also found following artcile very useful in displying Excel data in datatable. It provides both C# and VB.NET code. [Import data from Excel to Datatable in C#, VB.NET](http://www.e-iceblue.com/Tutorials/Spire.XLS/Spire.XLS-Program-Guide/Excel-Import/Export-Import-Data-from-Excel-to-Datatable.html) Hopefully, this will be of help. | |
Re: Hopefully, you can also find following method works. Before you can run the code, remember to reference .net Excel dll from: http://spreadsheet.codeplex.com/ //connect database OleDbConnection connection = new OleDbConnection(); connection.ConnectionString @"Provider=""Microsoft.Jet.OLEDB.4.0"";Data Source=""demo.mdb"";User Id=;Password=" OleDbCommand command = new OleDbCommand(); command.CommandText = "select * from parts"; DataSet dataSet = new System.Data.DataSet(); OleDbDataAdapter … | |
Re: You can save aspx page as Html file and then convert it to Doc/Docx. Anyway, there is a similiar post that may help- http://www.dotnetfunda.com/forums/show/10573/how-to-convert-aspx-file-to-word-file-usign-csharp-aspnet Good luck. | |
Re: This C#.NET tutorails had helped me alot when I started to learn about it. http://www.homeandlearn.co.uk/csharp/csharp.html | |
Re: Here is an example for [converting Excel to text in C#](http://www.e-iceblue.com/Knowledgebase/Spire.XLS/Spire.XLS-Program-Guide/How-to-Convert-Excel-to-Text-in-C-and-VB.NET.html) using free Excel library.I am not sure this is what you need. Feel free to check the link. Regards | |
Re: hello, refer this article - http://janewdaisy.wordpress.com/2011/11/29/c-export-data-from-excel-to-datatable/ hope it works for your situation | |
Re: Will .NET Excel API which supports converting .asp page to Excel file can sovle your problem? | |
Re: hi, It is very difficult to convert HTML to PDF without any 3rd party tools. I would recommend you to try C# PDF component. It allows to convert html string/file/url to PDF including styles, you can try this feature with the free trial version.And this programming guide gives a sample … | |
Re: Hi, I'm currently working with a free C# PowerPoint API.What I need is to open, read and modify PowerPoint presentations in my web application. That lib works just fine enough to meet all me need.And it's availabe on MSDN,check it if you need: http://visualstudiogallery.msdn.microsoft.com/4cb184ce-33da-496c-9c87-2ff8e5c039e4 regards. | |
Re: hi. Glad to see you already solved your problem. Here I'd provide code snippet in VB.NET for copying worksheet in Excel, hope it can be helpful.(P.S. You have to add [.NET Excel.dll](http://www.e-iceblue.com/Introduce/free-xls-component.html) as a reference in your project before using the below code) Imports Spire.Xls Namespace Copy_Worksheet Class Program Private … | |
Re: hi , It is possible to integrate a [.NET PowerPoint component](https://powerpoint.codeplex.com/) into your Web appliction so that you can process PPT slide on website, this way ,you can save a lot time comparing to deploying Microsoft.Office.Interop.PowerPoint in your project. regards | |
Re: hi ,Jaga.dish The following pages will contribute,check: http://www.codeproject.com/Articles/705248/Generating-RDLC-Dynamically-for-the-Report-ViewerDynamically for dynamically generating RDLC report and [export date from datatable to PDF](http://www.e-iceblue.com/Knowledgebase/Spire.DataExport/Program-Guide/How-to-Export-DataTable-to-PDF.html). Hope this is what you need. regards | |
Re: Hello, here is my solution to export data to Excel with a [.NET Excel library](https://github.com/spirecomponent/.NETExcelLibrary) //Connect DataBase and Export Data to DataTable OleDbConnection conn = new OleDbConnection(); conn.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=..\..\data\demo.mdb"; conn.Open(); OleDbCommand command = new OleDbCommand(); command.CommandText = " select Name, Capital, Continent, Area, Population, from country "; command.Connection … | |
Re: Hi Does it mean to Export your Data from Datatable to Word Document?If so,I can provide you the following codes to achieve this. **Step1. Function to fill data in datatable ** private void Form1_Load(object sender, EventArgs e) { oleDbConnection1.ConnectionString = txtConnectString.Text; oleDbCommand1.CommandText = txtCommandText.Text; using (OleDbDataAdapter da = new OleDbDataAdapter()) … |
The End.