DirectoryComputersBlog Details for "New arrival of Aspose.Words for SQL Server Reporti"

New arrival of Aspose.Words for SQL Server Reporti

New arrival of Aspose.Words for SQL Server Reporti
Aspose.Words for Reporting Services is a rendering extension for Microsoft SQL Server 2005 Reporting Services that allows exporting reports in the DOC, RTF and WordprocessingML formats. All RDL report features, including tables, matrices, charts, tex
Articles: 1, 2, 3, 4

Articles

Aspose.Words for Reporting Services Featuring AWesomeExport Technology
2007-04-17 08:43:00
It's been around 10 days since we released Aspose.Words for Repo rting Services , the only solution on the market that enables so desperately requested export of reports to Microsoft Word documents. Now it's time to speak about what this unique product actually can do :) We started working on this product several months ago and from the very beginning we've been keeping in mind one important thing. We intended to not only implement high-fidelity export without any losses or changes, but also to make the resulting documents convenient to edit and manage. This task is actually very difficult to accomplish because normally the output is either very exact to the design of the original reports or easy to modify... The goals seem to be mutually exclusive. As you know, report items are absolutely positioned. Microsoft Word does support absolute positioning along with inline objects; and each type of layout has its own benefits and drawbacks. Nothing is better or worse....
More About: Technology , Ring
Aspose.Words for Reporting Services 1.0.1 Released
2007-04-17 08:04:00
This release officially introduces our new technology of smart export of reports to Microsoft Word documents called AWesomeExport. Currently it allows to convert tables and matrices in original reports to "native" tables in Microsoft Word documents (rather than to a bunch of textboxes) which makes the output much more natural and easy to edit. Note this behaviour is enabled by default starting with this release. To learn how to turn it off if needed, please consult the online or offline documentation of the product. This release also includes some minor fixes requested by customers such as the correct support of hard breaks when exporting to tables using AWesomeExport. To download: http://www.aspose.com/Downloads/Aspose.Wo rds.Repo rting.Services /Default.aspx
More About: Words , Released , Release
Extract document content separated by page breaks.
2007-04-17 01:26:00
In Aspose.Words, it is pretty easy to extract document content separated by section breaks, as this content is effectively put in separate Section nodes in Aspose.Words object model. But what if we need to extract content separated by page breaks, as requested by one of our users in the following forum post: http://www.aspose.com/COMMUNITY/forums/Sh owThread.aspx?PostID=73223 Here is a small and relatively simple code that can help you in solving this task: Example[C#]/// <summary>/// Extra cts pages from the specified document as a number of separate documents./// The pages must be separated with page breaks./// We assume that the initial document has only one section./// </summary>private void ExtractPage s(){    &n bsp; Document doc = new Document(MyPath + "PageSetup.PageBreaks.doc");  & nbsp;    Node startNode = doc.FirstSection.Body.FirstPara graph;&nbs p;      int pageNumber = 1;&nbs...
More About: Content
Aspose.Words for Java 2.1.0 Released
2007-04-14 11:58:00
This release of Aspose.Words for Java features: HTML export (fully matches HTML export available in Aspose.Words for .NET 4.2.1) Updated all other code (all fixes) to match Aspose.Words for .NET 4.2.1. Still Aspose.Words for Java does not have: HTML import RTF export/import WordML export/import PDF export We are working on those. To download: http://www.aspose.com/Downloads/Aspose.Wo rds/Default.aspx  
More About: Released , Release , Lease
Aspose Reuses its Own Proven Aspose.Words Technology Again
2007-04-08 22:36:00
Aspose.Words is a market leading document processing component, used by thousands of customers worldwide to generate, convert and process DOC, RTF, WordML and HTML documents in .NET and Java applications. We at Aspose, show full committment to our own technology by reusing Aspose.Words both internally and in the new products. Aspose.Words for Reporting Services is our newest product that works as a renderer extension for Microsoft SQL Server 2005 Reporting Services and allows to export any report as a DOC, RTF or WordprocessingML document. Aspose.Editor is a revolutionary word processor control for ASP.NET and Windows Forms applications embeds Aspose.Words to provide support for editing DOC, RTF, WordML and HTML documents. Aspose.Words is used in our internal process to build HTML and CHM documentation from Microsoft Word documents. The Getting Started and Programmers' Guide in the Aspose.Words Documentation are built with Aspose.Words for .NET.  
More About: Technology , Again , Rove , Ology
Aspose.Words for Reporting Services 1.0.0 Released
2007-04-06 09:03:00
Please welcome our new product Aspose.Words for Repo rting Services ! Aspose.Words for Reporting Services is the only solution on the market that makes possible generating true DOC, RTF and WordprocessingML reports in Microsoft SQL Server 2005 Reporting Services. All RDL report features, including tables, matrices, charts and images are converted with the highest degree of precision to Microsoft Word documents. Aspose.Words for Reporting Services works as a rendering extension for Microsoft SQL Server 2005 Reporting Services. To download: http://www.aspose.com/Downloads/Aspose.Wo rds.Reporting.Services/Default.aspx The zip file contains Aspose.Words.ReportingServices.dll and instructions how to configure it on your server. Follow the instructions and Aspose.Words for Reporting Services will work in evaluation mode. It will produce documents of limited size and with a watermark. Licenses for purchase, more product documentation and also an MSI installer will be coming over the...
More About: Released , Release
Aspose.Words for .NET 4.2.1 Released
2007-03-27 09:40:00
This is a maintenance release. Here is what's been fixed: 1539 Load image from same URL only once when importing HTML. 1537 Document looks not correct when exported to DOC. 1534 Support PageBorderArt in import and export WordML. 1533 'Unknown line style' exception when converting from DOC to WordML. 1527 Add support for loading images from different URIs. 1526 Document throws "Unable to read beyond the end of the stream" on saving. 1525 Document throws "Cannot get field part because at end of field code." on saving. 1523 Invalid list level number format is read from the document. 1519 Import of a WML file throws because of a culture. For those who are waiting on other fixes, don't worry, there will be another hotfix coming out soon. To download http://www.aspose.com/Downloads/Aspose.Wo rds/Default.aspx
More About: Words , Released , Release , Lease , Ease
How to Generate Real Microsoft Word DOC Documents from Crystal Reports
2007-03-25 20:33:00
Crystal Reports has long been able to produce reports in RTF format (giving them the .DOC extension by default which always created confusion). Using Aspose.Word s you can quickly and easily convert from RTF to real DOC. Either on the server or on the client. The code to convert any RTF to DOC is as simple as this: Aspose.Words.Document doc = new Document("C:MyFolderMyFile.rtf");doc.Save ("C:MyFolderMyFile.doc"); Conversions in any direction between Microsoft Word formats (DOC, RTF and WordML) in Aspose.Words are high-fidelity (very accurate). We have not figured it out what is the best way of hooking this up actually to Crystal Reports (it does not seem extensible in this way), but you can write a simple .NET application to do the conversion using Aspose.Words and convert documents when you see fit. If you do find a way to hook this up to Crystal Reports, let us know. Also, you can use this approach to convert between all other formats supported by Aspose.Words: Fro...
More About: Crystal , Soft , Real
Bookmark Removal.
2007-03-13 15:11:00
What to do if you need to remove bookmark and its entire content from the document altogether. The only method existing in API for that is setting Bookmark .Text to an empty string. But that will work only for the simplest of bookmarks. For bookmark spanning multiple nodes with mixed content, like paragraph, tables, it will fail with a dreaded "Start and end node should have the same grand parent" exception. It will also fail when bookmark spans several sections and bookmark content is crossing the section border. Taking into account this and the fact that lots of users are requesting the robust bookmark removal capability we have decided to provide a sample code to achieve this functionality. We have already tested this code on several 'problem' documents and it works fine as far as I can see. However, it is up to you to try it for yourself and find out if it works for your documents. Please report all encountered problems in the forum. We will try to fix them as soon as they will...
More About: Mark
Workaround for form field text loose formatting when updated from code.
2007-03-13 15:04:00
There is a known issue of loss of formatting when setting form field text input value using Result property or SetText InputValue method. For example, you have formatted your text form field as bold and it comes up as normal text when updated. For a workaround you can use the following wrapper method instead of using SetTextInputValue method directly: Example[C#] private void SetFormFieldText(FormField formField, object value) { if ((value == null) || (value is string) && ((string)value == "")) { formField.Result = ""; return; } Node node = formField.PreviousSibling; Node separator = null; Run resultRun = null; while (node != null && node.NodeType != NodeType.FieldSeparator) { // Take a run with formatting from form field code. if (node is Run) resultRun = (Run)node.Clone(true); node = node.NextSibl...
More About: Code , Update , Matt , When
Aspose.Words for .NET 4.2.0 Released
2007-03-13 04:40:00
This releases introduces a great new feature - WordprocessingML import in Aspose.Words . Now, the following formats are well supported in Aspose.Words for .NET: Open and save DOC - Microsoft Word 97 - 2007 Document Open and save RTF - Rich Text Format Open and save XML - WordprocessingML Open and save HTML/XHTML Save TXT Save PDF (when used with Aspose.Pdf) New Features Import WordprocessingML documents. Updated demos to include WordprocessingML. Updated Aspose.Words Documentation. Made it possible to specify a password when protecting a document (1458). Support distance from text for paragraph borders in HTM (1497, 1495). Support import and export of hyperlink target attribute in HTML (1491, 655). Fixes 1511 Save protection password hash into RTF and WordprocessingML. 1508 Documents with more than 1024 shapes are not supported. 1506 Korean text is not exported to HTML. 1503 Korean text is not exported to PDF. 1498 Tab stops are wrapping to next line in PDF. 14...
More About: Released , Release , Lease , Ease
Aspose.Words Documentation Revamped!
2007-03-08 16:31:00
Check out the new main page for the Aspose.Words Document ation ! This consolidated documentation now includes: Aspose.Words Getting Started Aspose.Words Programmer's Guide Aspose.Words for .NET API Reference Aspose.Words for Java Reference We have improved the process by which we develop and build documentation that means better documentation for you. Getting Started and Programmer's Guide used to live in Aspose.Wiki which did not have an easy to navigate tree. It was also quite difficult for us to write documentation in Wiki in plain text. The API reference for .NET and Java were in separate sections of the website, not integrated with Wiki. It was not easily possible to convert Wiki documentation to other formats CHM or PDF requested by users. Now, Getting Started and Programmer's Guide are written in Microsoft Word. Then they are sliced into topics and processed by our inhouse tool that uses Aspose.Words to do DOC to HTML conversion plus...
More About: Menta , Documenta
Rapid Text Format
2007-02-11 20:06:00
Please download the latest Aspose.Words 4.1.1 if you want to assess the result of the optimizations applied to RTF import within almost two weeks after release. Let me boast a bit. Let's take our old fellow for the testing: a document named Microsoft Office Word 2003 Rich Text Form at (RTF) Specification converted to the format it describes, RTF. Why we commonly use it for testing our import/export modules is because it's well balanced for that purpose: it's large enough (~8 Mb RTF); it contains tons of tables and formatted text; it includes some pictures. Importing the document using Aspose.Words 4.1.1 shows the following results on my machine (P3.6 2Gb RAID0): whereas Microsoft Word 2003 shows around 8 seconds for open and almost 3 seconds for saving the same document on the same machine! As ever, this is sort of a challenge for us - whether we are able to gain even more precious seconds or their fractions thereby speeding up your document processi...
More About: Rapid , Format
Aspose.Words for .NET 4.1.1 Released
2007-02-11 15:16:00
This maintenance release includes a number of useful fixes: 1455 TXT Added TxtExportEncoding, TxtExportHeadersFooters, TxtExportParagraphBreak properties. 1464 DOC Document shows the image from the other document when two documents are opened in MS Word simultaneously. 1462 DOC System.ArgumentException during list import. 1406 DOC AllowBreakAcrossPages property value is incorrect after reading from DOC to model. 1130 DOC RowFormat.AllowBreakAcrossPages is sometimes defined incorrectly in nested tables. 1463 DocumentBuilder InsertImage scales image size to 60%. 1397 MailMerge Support (char)148 double quotes in merge field numeric picture switches. 1465 PDF Support AllowBreakAcrossPages in export to PDF 1456 PDF TOC entry is incorrect (displays 888) 1404 PDF Support output of RepeatingRows attribute in Table element. To download http://www.aspose.com/Downloads/Aspose.Wo rds/Default.aspx  
More About: Words , Released , Release , Lease , Ease
More articles from this author:
1, 2, 3, 4
46899 blogs in the directory.
Statistics resets every week.


Contact | About
© Blog Toplist 2008 - Supported by Web Catalog - SEO by FeWorks
eXTReMe Tracker