Download

ReoGrid has different release packages for different functionality set:

Functionality Set Description
Minimum Minimum functionality set, no outline, no print, no formula but keep small and fast.
Standard (Release) The default standard functionality set without script execution. Single DLL required.
Extension All features including script execution. Multiple DLL required.

Choose the functionality set to add DLL references for your application, learn more about installation.

All editions work on .NET 3.5, .NET 3.5 client profile or higher.


Make a donation to help this project

 

Release Packages

High Importance-20 By downloading the packages, you agree to our terms of use.

Version 2.1

Version 2.0

Getting Source Code

Get latest source code from GitHub.

git clone https://github.com/unvell/ReoGrid.git

Environment Requirements

Component Run-time

  • .NET Framework 3.5 or higher
  • or .NET Framework 3.5 Client Profile or higher

Development Environment

  • Visual Studio 2012 or higher

Check for old versions and the preview of next version.

36 Responses to “Download”

  1. Philip says:

    Hello,
    I would like to bring to your attention Visual Studio .Net compile issues with:
    ReoGrid-0.8.8.4-Beta-Demo-Source\Demo.sln
    This project is built with Visual Studio 2008,
    (Microsoft Visual Studio Solution File, Format Version 10.00)
    and it reports many build errors. It looks like the new keywords in this release have not been updated with the proper syntax/parameters/arguments. Please have a look again.
    Thanks, Philip

    • jing says:

      Thanks. We will make the demo project can compatible with Visual Studio 2008 from next release.

  2. Thesa says:

    Unfortunately your “ReoGrid-0.8.9.1-Alpha-Build.zip” does not contain the ReoGridEditor. Will there be a next upgrade soon?

    • Jing says:

      Yes, since 0.8.9 interface changed we are now working on preparing the demo and editor project, they would be able to be downloaded with 0.8.9.2-beta soon! maybe tomorrow. Thanks!

  3. Thesa says:

    I like to import ReoGridEditor and use it as WindowsForm without modifications, directly from it’s exe-File. But unfortunately it momentarily contains all the unsafe .NET File-Dialogs. And they very often are crashing down the Application. So could you please use better stuff (for example from kernel.dll) to realize File-Dialogs in future builds?

    • Jing says:

      We didn’t use unsafe .NET file dialog in ReoGridEditor, could you please provide some detailed message that was displayed when the Application crashed.

      • Thesa says:

        1.) I “downgrade” (and place in my own Main Form) a Control from ReoGridReditor with the following trick:
        private void SetupRGEC()
        {
        RGEC = new ReoGridEditor();
        RGEC.TopLevel = false;
        RGEC.Location = new Point(10, 5);
        RGEC.Size = new Size(100, 100);
        RGEC.Dock = DockStyle.Fill;
        RGEC.BackColor = SystemColors.GradientActiveCaption;
        RGEC.FormBorderStyle = FormBorderStyle.None;
        RGEC.Visible = true;

  4. Thesa says:

    Hi Jing,
    for downlad you are providing version 0.9.0.0 at this site, but with NuGet you do so with a newer version 0.9.1.0 (but without scripting and extensions). Could this version 0.9.0.0 be replaced with the newer 0.9.1.0 one and should it work without problems with the rest from 0.9.0.0 (scripting and extensions)?

    • Jing says:

      Hi Thesa, sorry for late. The new version 0.9.2 has been released, download links from here and NuGet now get synchronized. Please use the same version for editor, script and extensions.

  5. phantompeng says:

    Hello, I occur a problem using print function of version 0.9.3. There is always blank area, no matter the value of marigin-left and margin-right.

  6. Axel says:

    Hi, Thank you for the new version, its a great idea add the option “Data Source”
    Kind Regards,

  7. Hi, i have used WPF reogrid 1.2.3 version and 3.0.0 version.
    I use
    Dim wstyle As New WorksheetRangeStyle
    With wstyle
    .Italic = True
    .Flag = PlainStyleFlag.FontStyleItalic
    End With
    WsheetCurr.SetRangeStyles(SelezioneCorrente2, wstyle)
    but not found.
    PlainStyleFlag.FontStyleBold found, but FontStyleItalic and underline not found
    help me please…

    • Jing says:

      Please check your version again, in the latest version they should be there: PlainStyleFlag.FontStyleItalic and PlainStyleFlag.FontStyleUnderline.

  8. Dom says:

    Hi,i have downloaded the latest version(2.0.0),when i run the demo,there is always a NullReferenceException occurred in the file ControlShare.cs at the event WorksheetCreated

  9. DongDL says:

    How to reference formular from other sheet?

  10. Chen says:

    my project can’t building success

  11. Chen says:

    I just copy FastColoredTextBox.dll and Antlr3.Runtime.dll ,but there is always a NullReferenceException occurred in the file ControlShare.cs at the event WorksheetCreated

    • Jingwood says:

      Maybe you are using different version between ReoGrid and other referenced DLLs, try download the latest release package and make sure using all DLLs from same folder in the package.

  12. Peter Vu says:

    ReoGrid Editor has been error UI when I set culture is de-DE.

  13. Viktor Bvp says:

    ReoGrid is excellent, thank you very much

  14. Jon Louvar says:

    I’m looking for information on Vlookup and Pro features, can you please describe the Pro commercials?

  15. jay says:

    So this works with .net 3.5 and VS2012 out of the box? I am having trouble getting this to work with VS2013. It seems this uses String Interpolation (and maybe other newer features) which is C# 6.0; from what I can tell that comes with VS2015…

    • Jingwood says:

      There is some code uses the C# 6.0 syntax from VS2015, such as

      this.worksheetNameChangedEvent?.Invoke(...)

      This is can be translated to the following syntax that works with VS2012:

      if (this.worksheetNameChanged != null) this.worksheetNameChanged(...);

  16. Scott Ferguson says:

    Hi, Is there a signed assembly I can download?