Sign In  Sign Up Live-Chat
Spacer

Aspose.AdHoc for .NET

  • Aspose.AdHoc 1.6.0 Released!

    Dear Customers,

     We've released Aspose.AdHoc v1.6.0!

     It contains most recent bug fixes and new features.

    Custom localization

    By default AdHoc is translated to three languages: English, Arabic and Dutch (Nederland).
    From now, you can create custom localization resource sets based on a template provided in Downloads section of the web site.

    All you need to do is:
    • Change (localize) string resources from template project
    • Compile project and copy resource set binary to Aspose.AdHoc directory
    • Set Aspose.AdHoc.UseUnsignedResource to "true"
    • Assign your culture to Aspose.AdHoc.CultureInfo

    Now run your application localized.

    NOTE: Custom localization works only when Aspose.AdHoc binary is not placed to Global Assembly Cache.

    For more information refer http://www.aspose.com/documentation/visual-components/aspose.adhoc-for-.net/internationalize-and-localize.html


    Data Source lifetime control

    Aspose.AdHoc stores reference to data source DataTable in Page.Session and as a result, the data source may be lost when session expires. The control's behavior related to session expiration has been improved the following way:

    If you are using Aspose.AdHoc in DisconnectedData mode (Aspose.AdHoc.DisconnectedData is set to "true"), Aspose.AdHoc needs Page.Session only before DataSource was bound with Aspose.AdHoc.DataBind method.

    If Aspose.AdHoc.DisconnectedData is set to "false", Aspose.AdHoc.DataSourceInaccessible event will warn you that reference to data source was lost due to session timeout or session clearing. You will be able to reassign data source through event handler arguments. If data source was not reassigned, component will switch to DisconnectedData mode automatically.

    NOTE: Don't forget about DisconnectedData mode restrictions.

    Check the download out http://www.aspose.com/community/files/53/visual-components/aspose.adhoc-for-.net/default.aspx

    You can find resource template project in Resources section.

    Thanks!

  • Aspose.AdHoc 1.5.9 Released!

    Dear Customers,

     We've released Aspose.AdHoc v1.5.9!

     It contains most recent bug fixes. Moreover, now download package contains two versions of the Aspose.AdHoc, built under Microsoft .NET Framework 1.1 and 2.0 so that you can use any appropriate version corresponding to your needs.

     Also installer supports silent upgrade now, so you don't need to uninstall previous version of component manually before installing new one.

    Check the download out http://www.aspose.com/community/files/53/visual-components/aspose.adhoc-for-.net/entry164576.aspx

     Thanks!

     

  • Aspose.AdHoc 1.5.7.0 Released!

    Dear customers,

       We've released Aspose.AdHoc 1.5.7.0!

       Fixed:

          Throwing SecurityException while being invoked from partially trusted callers.

          Refers:http://www.aspose.com/Community/Forums/thread/80416.aspx

       Thanks

  • Aspose.AdHoc 1.5.6.0 Released!

    Dear customers,

       We've release Aspose.AdHoc 1.5.6.0!

       What's new:

       1. New CultureInfo -- Arabic, was supported now!

       2.Fixed:

    • The bug in selecting from the dropdownlist with Firefox.
    • The bug in processing Bit data.

       3. Update the API docs.

       4. The install package supports Windows Vista now!

    Thank you!

  • Aspose.AdHoc 1.5.5.0 Released!

    Dear Customers,


           We’ve released Aspose.AdHoc 1.5.5.0!


           What’s new:


           1.An editable dropdownlist was added to the filtering screen as showing below:

           And more, the editable dropdownlist supports autocomplete function, that is, the user can only type part of the word and the component will pick up the matched value in the list automatically.


           2. New event 'PreSelectableItemBound' was added:

           This new event provides a way to customize the items in the dropdownlist rather than display the values in the binding table only in the old version.Please refer to the post:    

    http://www.aspose.com/Community/forums/thread/61681.aspx

           If you have the same scenario in your application, please follow the steps below:

           1). Defined a method for handling the PreSelectableItemBound event as below:

                    private void AdHoc1_PreSelectableItemBound(string columnName, ref ArrayList valueItems)
                      {
                           if(columnName.Equals("FName"))
                           {
                                valueItems = new ArrayList();
                                valueItems.Add("FName1");
                                valueItems.Add("FName2");
                                valueItems.Add("hello");
                                valueItems.Add("welcome");
                           }
                      }

            2). Listen to the PreSelectableItemBound event with the method above:

                private void InitializeComponent()
               {
       ......
       this.ahMain.PreSelectableItemBound +=  new
    AdHoc.PreSelectableItemBoundEventHandler(this.AdHoc1_PreSelectableItemBound);
                    ......
               }

    Then the dropdownlist will fill its items with the values in the ArrayList that you set in the AdHoc1_PreSelectableItemBound method.


    3. Fixed the bug in parsing SQL with quotes. Refer:

    http://www.aspose.com/Community/forums/thread/58518.aspx