How-to deploy the Crystal Reports Basic Runtime that’s included in Visual Studio 2008

This week I've to deploy an ASP.NET application containing about 20 reports that have been created with the Crystal Reports Basic Runtime which is included in Visual Studio 2008. (By the way, the application also contains a lot of AJAX-Functionality. It uses the "AJAX Control Toolkit-based" MultiColumnDropDown that I've described in a previous post). When deploying the application to a different machine than your developer-machine, the Crystal Report Basic Runtime must be deployed also. You do that by copying the necessary msi-file to the server and run it. The "necessary" .msi-file is already on your development machine and were installed with Visual Studio 2008. The .msi-files for different plattforms are located in the following paths:
Runtime | MSI-Location
(x86) C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\CrystalReports10_5\CRRedist2008_x86.msi
(x64) C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\CrystalReports10_5\CRRedist2008_x64.msi
(IA64) C:\Program Files\Microsoft Visual Studio 9.0\Crystal Reports\CRRedist\IA64\CRRedist2008_ia64.msi
(the table above is contained in MSDN-documentation here) The installation is very simple. You doesn't need to click anything, simply run the .msi and you see the window below. Just wait until it closes. crystalReportsBasic There's also the possibility to include the msi in your setup-application. For more information on that take a look at this thread in MSDN-Forums.
Read more...

The promised code example with the ASP.NET Ajax Multicolumn-Dropdown

During the last months I was asked many times for the code of the Multcolumn-Dropdown that I've described in this post. I've just created a very small sample-application containing such a dropdown. You can download it here. If someone of you creates a control out of that source, I would be glad to get a link to it. :-) Thomas
Read more...

Developing Multicolumn-DropDown/DropDownList with ASP.NET, the GridView and the AJAX Control Toolkit

During the last months I was developing an ASP.NET application and I needed a dropdownlist to display multiple columns in each item. Everyone with a little knowledge in Web-development knows, that HTML doesn't contain built-in support for multicolumn-DropDowns. (more…)
Read more...