Wed 01 Dec 2010 |
|
Crystal Reports - 'bobj' is undefined error |
|
|
|
| I'm using Crystal Reports 2010 for Visual Studio running on a Win 2003 server. My CR report viewer would not load on the page and I kept get a javascript error saying, "'bobj' is undefined." I finally found the answer at https://forums.sdn.sap.com/message.jspa?messageID=7304519. 1) You will need to copy the crystalreportviewers folder to the root of your project. Mine is located at C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\Crystal Reports 2011\crystalreportviewers. 2) Then reference the folder in your web.config file by adding the following: <configSections> <sectionGroup name="businessObjects"> <sectionGroup name="crystalReports"> <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" /> </sectionGroup> </sectionGroup> </configSections>
<businessObjects> <crystalReports> <crystalReportViewer> <add key="resourceURI" value="~/crystalreportviewers" /> </crystalReportViewer> </crystalReports> </businessObjects>
Good luck |
|
Mon 28 Jun 2010 |
|
jQuery Effects Moblie Reader Document |
|
|
|
| Here is a link to a doc for mobile readers containing jQuery effects. jQuery Effects v1.4.2 (for IE right click and choose "Save Target As") |
|
Last Updated on Monday, 28 June 2010 14:47 |
Mon 27 Jul 2009 |
|
SQLyog for MySQL databases |
|
|
|
| SQLyog is the best GUI for MySQL databases. The folks at Webyog have created a very intuitive interface. The tools is very powerful and makes some complex database functions as simple as the click of a button. SQLyog is worth every penny! Click here to download it from Webyog.
|
|
Last Updated on Tuesday, 04 August 2009 19:33 |
|
Tue 10 Nov 2009 |
|
Find hidden field value in GridView |
|
|
|
| How to find value of hidden id row in a GridView. In the Properties section of a GridView look for DataKeyNames. Type in the name returned to the grid that contains the Id field name. Then add the following code...
Public Sub GV_Users_RowCommand(ByVal sender As Object, ByVal e As GridViewCommandEventArgs) If e.CommandName = "cmdUserDetails" Then Dim index As Integer = Convert.ToInt32(e.CommandArgument) Dim strLoiId As String = Convert.ToString(GV_Users.DataKeys(index).Value) End If End Sub |
|
Last Updated on Thursday, 19 November 2009 19:55 |
This is a great little tool for measuring anything on your screen. It is a free tool and can be downloaded at WonderWebWare.com. |
|
Last Updated on Monday, 27 July 2009 14:18 |
|
|