Results 1 to 11 of 11

Thread: Aspose Word Alternative

  1. #1

    Thread Starter
    Frenzied Member zynder's Avatar
    Join Date
    Nov 2006
    Location
    localhost
    Posts
    1,434

    Aspose Word Alternative

    Hi guys.

    I'm using Aspose Word and embed it in C# application. However, there are some limitations to Aspose compared of course to Microsoft Word.

    Is there any other alternative besides the 2 mentioned above. Like a word processing SDK that can be embedded in a .Net application?

  2. #2
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: Aspose Word Alternative

    For what it is worth, I have found Aspose to be one of the more complete non word based APIs. What issues are you having with it? The only issues I have had recently are with some of the Content Controls that were added as part of office 2007.

  3. #3

    Thread Starter
    Frenzied Member zynder's Avatar
    Join Date
    Nov 2006
    Location
    localhost
    Posts
    1,434

    Re: Aspose Word Alternative

    It won't highlight and won't support headers and footers.

  4. #4
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: Aspose Word Alternative

    I have been using headers and footers in it for years. Here is an example that uses both:

    Code:
            Dim Lic As New Aspose.Words.License
            Lic.SetLicense(Application.StartupPath & "\Aspose.Words.lic")
    
            Dim doc As New Aspose.Words.Document()
            Dim docBuilder As New Aspose.Words.DocumentBuilder(doc)
            docBuilder.InsertParagraph()
            docBuilder.MoveToHeaderFooter(HeaderFooterType.HeaderPrimary)
            docBuilder.Write("Hello World")
            docBuilder.MoveToSection(0)
            Dim f As Aspose.Words.Font = docBuilder.Font
            f.HighlightColor = Color.Yellow
            f.Size = 16
            f.Name = "Courier New"
            docBuilder.Write("hola")
    
            doc.Save("C:\temp\testheader.doc")

  5. #5

    Thread Starter
    Frenzied Member zynder's Avatar
    Join Date
    Nov 2006
    Location
    localhost
    Posts
    1,434

    Re: Aspose Word Alternative

    Hey thanks for the code. How about the highlighting part?

  6. #6
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: Aspose Word Alternative

    That code has highlighting in it, notice the f.HighlightColor = Color.Yellow

  7. #7

    Thread Starter
    Frenzied Member zynder's Avatar
    Join Date
    Nov 2006
    Location
    localhost
    Posts
    1,434

    Re: Aspose Word Alternative

    Is this embedded in the app. I mean you don't need to write code. In the aspose editor i can't see insert header or footer or even the highlight part. The user will do the action.

    Thanks for the quick response.

  8. #8
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: Aspose Word Alternative

    Ahhh... You are using the viewer. That is the piece of information I was missing. I haven't used their viewer much, but from what I understand it is rather limited. The viewer is not meant to be a word replacement, but rather it is used to render the document. So you can render the document to the screen, or to XPS, PDF, TIF, or to a printer.

    I don't know of any other viewers out there that are going to provide a lot of word like functionality, without relying on word. You could always go the OpenOffice route and open the documents using that.

  9. #9

    Thread Starter
    Frenzied Member zynder's Avatar
    Join Date
    Nov 2006
    Location
    localhost
    Posts
    1,434

    Re: Aspose Word Alternative

    Does OpenOffice have SDKs? Have you seen someone done that?

  10. #10
    PowerPoster 2.0 Negative0's Avatar
    Join Date
    Jun 2000
    Location
    Southeastern MI
    Posts
    4,367

    Re: Aspose Word Alternative

    There are some SDKs for OOo, but I have never used them, so you will have to look to someone else to help you with that, though a quick google search showed a few decent sites that have info on it.

  11. #11

    Thread Starter
    Frenzied Member zynder's Avatar
    Join Date
    Nov 2006
    Location
    localhost
    Posts
    1,434

    Re: Aspose Word Alternative

    Okay thanks very much for the help.

    I found this site and it seems feasible. It's programming with open office with c#.net.

    http://www.opendocument4all.com/down...Office.net.pdf

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width