Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Looking for a Crystal Reports alternative...

Looking for a Crystal Reports alternative...

Scheduled Pinned Locked Moved The Lounge
javascriptcloudcsharplinqcom
45 Posts 33 Posters 114 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Lost User

    What you need, is a Crystal Reports, that can hold tables. A Crystal Reports that the client can code in a widely used scripting language. You need a report generator that is has a free runtime. And MS Access did not cross your mind? There's a lot of courses teaching MS Access, it is ubiquitous. It does reporting and can hold the data it is basing the reports on too. Exporting to MS Word and PDF is free. That works for everyone who has a Windows-license, just Linux users miss out here.

    Bastard Programmer from Hell :suss: "If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.

    W Offline
    W Offline
    WildlingCoder
    wrote on last edited by
    #41

    MS Access is fantastic as a stand-alone reporting tool, and even decent as a front-end GUI for a MySQL back-end (Access has been very good to me and my odd-shaped career), but it was never designed to run as a server. Also, Microsoft really, really hates it when you do it anyway. After searching for alternatives to the previously mentioned heresy, I noticed that if the commercial Reporting product required Java, it was a proprietary fork of Jasper Reports. Ultimately, we ended up rolling our own with node, a smattering of npm modules and a whole lot of pounding forehead to keyboard. The WordprocessingML spec is definitely taking up far too much real estate in my brain that could be otherwise used for more worthwhile things like cat videos and dread puns.

    1 Reply Last reply
    0
    • Sander RosselS Sander Rossel

      Hauled in a new client last week and they're using Crystal Reports. Needless to say, I'm not to happy about that. Luckily, he only has a few reports and he's willing to switch if I come up with a good alternative. The problem is, I don't have any. Looking for lists of alternatives gives me stuff like Power BI, Tableau and Qlick, which are BI tools and not report generators. What I need is a report designer that my client can use to create or modify some reports. I need stuff like invoices and packing slips, one or two A4 pages. Preferably something that also works in the cloud (not the editor, but generating the reports from code). I've seen DevExpress, but I can't really figure out if they have a stand-alone report editor. And because it comes with lots of components, it's quite expensive (the customer, not I, will be paying for the license). Also looking at List & Label, which looks promising. Any experiences with these tools, or other recommendations?

      Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

      S Offline
      S Offline
      Shmoken99
      wrote on last edited by
      #42

      Telerik maybe? Reasonable price, good licensing model, active product, and actual support.

      1 Reply Last reply
      0
      • Sander RosselS Sander Rossel

        Hauled in a new client last week and they're using Crystal Reports. Needless to say, I'm not to happy about that. Luckily, he only has a few reports and he's willing to switch if I come up with a good alternative. The problem is, I don't have any. Looking for lists of alternatives gives me stuff like Power BI, Tableau and Qlick, which are BI tools and not report generators. What I need is a report designer that my client can use to create or modify some reports. I need stuff like invoices and packing slips, one or two A4 pages. Preferably something that also works in the cloud (not the editor, but generating the reports from code). I've seen DevExpress, but I can't really figure out if they have a stand-alone report editor. And because it comes with lots of components, it's quite expensive (the customer, not I, will be paying for the license). Also looking at List & Label, which looks promising. Any experiences with these tools, or other recommendations?

        Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

        U Offline
        U Offline
        User 10679167
        wrote on last edited by
        #43

        Tibco Jasper Reports. Its java, there are open source community versions (server or studio), and as far as throughput goes it handles large amount of data way better than Crystal Reports.

        1 Reply Last reply
        0
        • Sander RosselS Sander Rossel

          Hauled in a new client last week and they're using Crystal Reports. Needless to say, I'm not to happy about that. Luckily, he only has a few reports and he's willing to switch if I come up with a good alternative. The problem is, I don't have any. Looking for lists of alternatives gives me stuff like Power BI, Tableau and Qlick, which are BI tools and not report generators. What I need is a report designer that my client can use to create or modify some reports. I need stuff like invoices and packing slips, one or two A4 pages. Preferably something that also works in the cloud (not the editor, but generating the reports from code). I've seen DevExpress, but I can't really figure out if they have a stand-alone report editor. And because it comes with lots of components, it's quite expensive (the customer, not I, will be paying for the license). Also looking at List & Label, which looks promising. Any experiences with these tools, or other recommendations?

          Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

          P Offline
          P Offline
          Peter Shaw
          wrote on last edited by
          #44

          Sander, I did a project a little while ago now, that needed a similar thing. After much flitting around we settled on Bold Reports from Syncfusion.. BUT with a bit of a twist. We realised that we could use the original Microsoft Reports Designer tool used to create reports for Report Server (Rather than the Bold Reports tool, which at the time was still quite flaky and buggy), then use the "bold reports stand alone assembly" to load those report files, and programmatically combine them with our own data at run time. Hit me up off piste (You can find my contact details in any of the Succinctly Series books I've written ;-) ) if your interested, I've probably still got some sample code somewhere. Shawty

          1 Reply Last reply
          0
          • Sander RosselS Sander Rossel

            Hauled in a new client last week and they're using Crystal Reports. Needless to say, I'm not to happy about that. Luckily, he only has a few reports and he's willing to switch if I come up with a good alternative. The problem is, I don't have any. Looking for lists of alternatives gives me stuff like Power BI, Tableau and Qlick, which are BI tools and not report generators. What I need is a report designer that my client can use to create or modify some reports. I need stuff like invoices and packing slips, one or two A4 pages. Preferably something that also works in the cloud (not the editor, but generating the reports from code). I've seen DevExpress, but I can't really figure out if they have a stand-alone report editor. And because it comes with lots of components, it's quite expensive (the customer, not I, will be paying for the license). Also looking at List & Label, which looks promising. Any experiences with these tools, or other recommendations?

            Best, Sander Azure DevOps Succinctly (free eBook) Azure Serverless Succinctly (free eBook) Migrating Apps to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript

            D Offline
            D Offline
            davidh1968
            wrote on last edited by
            #45

            Sorry for the late reply but I really like ActiveReports from GrapeCity. I don't think I saw that mentioned by others. ActiveReports[^]

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups