Function Optimization (SSRS Report Code)?

Jan 14, 2010

I came across the following code recently and would like to optimize it:Public Shared Function ComputeLabel(ByVal Action As Integer, ByVal Flag1 As Boolean, ByVal Flag2 As Boolean) As String

Dim Prefix As String = ""
If Flag2 Then
Prefix = "Conditional "

[code].....

View 6 Replies


ADVERTISEMENT

In SSRS Under Report /REport Properties In The Code Tab Trying To Use Code From MSDN Library And Getting BC30465 Imports Statement Must Precede Any Declarations?

Aug 3, 2009

It looks like this: Itis stripping out HTML characters.

Imports System.Text.RegularExpressions
Function GetTextFromHtml(ByVal htmlText As String) As String

[code].....

View 1 Replies

Crystal Report And Code Optimization?

Jul 24, 2009

Ok, the error I'm getting is "Load Report Failed" and it happens when I need to load a large number of crystal ReportDocument objects. I've searched on this, and there is a property in the registry that you can change to -1 and it allows to load more, however I'm still getting the error, just after I get about twice as many documents loaded.

The report is basically a one page document (for each client in the database with an interest charge). It displays the amount of interest charged, and other information pertaining to the charge. These documents are basically printed out and mailed to the client.

I created a "Print Preview" screen which has a CrystalReportViewer object, and an ArrayList property. The ArrayList property has an array of all reports, and there are next and back buttons to browse through each report. Once they are satisfied, they will print them all out, and I can dispose of the objects.

The solution for this, from everywhere I've seen, is to "Dispose the object after you are done with it". My problem is that I can't dispose it until they are finished with the print preview screen.

Is there a better way to go about this that won't require too much time to code (we are already over the deadline on this project) or a simple solution to get past the ReportDocument limit? Right now it is erroring on report 150., There are 180 records (as of today) that need to be loaded.

View 1 Replies

Call A SSRS Report With Parameter From Program Code?

Apr 11, 2012

I have a SSRS report that contains a parameter called @playerID

what coding I need to add so the report can be run using the parameter?[code]...

View 1 Replies

Sql Server - SSRS Code Shared Variables And Simultaneous Report Execution?

Dec 28, 2009

I've found out that if two instances of an SSRS report run at the same time, any Code variables declared at the class level (not inside a function) can collide. I suspect this may be the cause of our report failures and I'm working up a potential fix.The reason we're using the Code portion of SSRS at all is for things like custom group and page header calculation. The code is called from expressions in TextBoxes and returns what the current label should be. The code needs to maintain state to remember what the last header value was in order return it when unknown or to store the new header value for reuse

View 11 Replies

Checking For NULL Dates In SSRS Custom Code Function

Feb 7, 2012

I am trying to implement a function for my SSRS report which will return a color value depending on the values of three dates.

[Code]...

View 1 Replies

Checking For NULL Dates In SSRS Custom Code Function?

Jul 7, 2009

I am using following code in rowdatabound fn.

Protected Sub gvwMileStone_RowDataBound(ByVal sender As System.Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs)

[code]...

ddlEProjectLevels is dropdownlist in edititemtemplate.Whwn i click edit in 1st row ddlEProjectLevels gets loaded with data from database.But in 2nd row dropdownlist does not contain values.Again in 3rd it gets loaded from db.Means in alternate rows,when i click edit dropdownlist(ddlEProjectLevels) doesnot load values.Can anybody help?

View 1 Replies

.net - SSRS Report Called From ReportViewer Control Displays No Data In The Report When Called With A Parameter

Apr 11, 2012

Can you look at my coding and let me know what I'm missing or doing wrong?I have a SSRS report that is called from a ReportViewer control and the ProcessingMode for this control is Remote. The report also has 1 parameter in it's DataSet.In the code I placed a MsgBox to make sure the code is finding the parameter and returning the parameter name. I am trying to stick the value of 10 into the parameter for playerID 10. Data for this player does exist.

I believe I need to add some more code to make this work but I'm not sure what else to add.

When the code executes the report is displayed but no data is shown in the report.

[Code]...

View 1 Replies

Display Parameter Value On SSRS Report

Aug 25, 2011

I am very new to SSRS.I have added one Parameter named Date on SQL Server Report.i have set parameter value from aspx.cs code behind file.i have drown that parameter on ReportHeader and i want display CurrentDate value on that parameter and i tried =Join(Parameters!Date.Value,", ") but it displays #Error at runtime.i also tried =Join(Parameters!Date.Label,", ") but it displays Nothing.

View 2 Replies

Obraining SSRS Report In The Form Of Pdf?

Mar 11, 2012

I want to get SSRS report in the form of pdf (or any other portable format) automatically. I mean when user presses button, instead of viewing report in Report View, it should be converted to pdf

View 1 Replies

SSRS Report Viewer From VB 2005?

Aug 5, 2010

VS 2005 (VB) SSRS 2005I have set up a functioning report server and can load a server report into a Report Viewer Control (8.0.0.0.) with copy local set to false. It will compile and render on my development machines no problem, but after compile the user gets the exception (System.IO.Filenotfound...could not load file or assembly icrosoft.reportviewer.winforms.

View 1 Replies

.net - SSRS Report Expression - Null Being Treated Like Zero?

Apr 11, 2012

Consider this SSRS value expression :=IIF(First(Fields!MyCol.Value, "MyDataSet")=0, "yes", "no")

MyCol is a Nullable column. I want "yes" to be output only when MyCol equals 0. The code above correctly evaluates to "yes" when MyCol is 0. However, it also evaluates to "yes" when MyCol is Nothing (i.e. NULL in SQL Server). Is this expected behavior ?

I had to resort to the following longer expression to get the desired result :

=IIF(Not(First(Fields!MyCol.Value, "MyDataSet") is Nothing) And First(Fields!MyCol.Value, "MyDataSet")=0, "yes", "no")Is there a shorter version of this which also works ?

View 1 Replies

Asp.net - SSRS Reporting Loads Slowly The 1st Report

Apr 30, 2012

I have a website(asp.net) which displays ssrs reports. Howevery everytime that I try to run the report from the website it takes about 2 min to load, but if I click on the report again , it will load up in seconds. I have tried to run a query that is used by the report and I get the results in second as well.

Is there any configuaration that I need to change or any tsql code that I need to add?

I have gone through to solutions provided here on stackoverflow but still had no luck.

View 1 Replies

String Parameter With Space In Between Passing To SSRS Report?

Nov 2, 2010

my users to view, send (via email), export SSRS reports. I have set up date parameter boxes with calendar drop down and they are able to send via email a URL link that would either display the report via ReportViewer or send a link that would let then view the report in Excel or PDF. This is working just fine. Now I just added another report with a procedure prompt using a text box. Report works fine when I run it in SSRS. If I enter say carotid stent, it displays all records that have the word "carotid stent" in the procedure name field. Now, when I added code using VS 2005 to accommodate this new parameter, here's my code -

ProcedureName = txtProcedureName.Text
msg.Body = "Please click on the URL link to view the report - " + Chr(13) + Chr(10) + "http://SERVERNAME/ReportServer/Pages/ReportViewer.aspx?%2fReports%2f" + ReportName +

[code].....

View 1 Replies

Local SSRS Report (.rdlc) With Object Data Source?

Apr 15, 2011

i created more projects using ReportViewer 2005 and 2008 in local processing mode than I can count on my hands. All Visual Studio 2005 or 2008 ASP.NET web forms projects. I always used some flavor of Object data source for the reports.Tonight, I attempted to add the same functionality to a Visual Studio 2010 MVC 2 project and am failing miserably. First, the Add New Item > Reporting > Report is now a 2008 RDLC and not a 2005 RDLC report. Secondly, when trying to add a DataSet, my usual method of create a data proxy class with static methods that return IEnumerables(Of Stuff) will not show up as sources in the DataSources drop down

Thirdly, my only option is to add a Database connection. There is no "Object Data Source" to pick from: Like I kind of alluded to, I have no problems whatsoever actually rendering a report using the ReportViewer control. What I can't do is figure out how set up a Data Source in these new-fangled 2008 reports with Visual Studio 2010 so that I can pump a list of domain objects into the ReportViewer and display the report.

UPDATE: With some more research, I've found that MVC projects do not allow object data sources to be used within them. One solution for my issue is to create a separate project in the solution -- a web application, a service, or even just a class library, to add the report to and design it accordingly.'m still looking for alternatives here, so don't run away too fast!

View 3 Replies

Asp.net - Unable To Load Control With Report Viewer (for SSRS 2k5) And Vs2010?

Oct 5, 2011

I am currently updating an application from Vs2005 to Vs2010. I'm having an issue rendering the report viewer (using SSRS 2k5) in the browser.When the report is loaded, I get bombarded with popups that say "Unable to load control". After all the popups, the report eventually load (thank god for firefox's prevent additional popup checkbox), yet none of the buttons work (each button causes the popup).

here is my code

html
<asp:Button ID="test" runat="server" Text="Run Report" />
<rsweb:ReportViewer ID="ReportViewer1" Width="700" Height="900" runat="server" />

[code]....

View 1 Replies

Optimization :: Optimize Own Code Written?

Jan 20, 2011

How can I Optimize my own code written by VB.net? Is there any tools for it? Does Visual Studio have any one? What's your suggestion? I use VS2008 as my editor.

View 1 Replies

.net - Code Optimization On Minutes Pr Hour Calculation?

May 25, 2010

The following code takes a timeframe in minutes since midnight and creates an array with minutes pr hour. But, it's slow. Any better suggestions out there? (no, changing language is not an option :-) )

Const clDeparture As Long = 123
Const clArrival As Long = 233
Dim lHour As Long
Dim lMinute As Long
Dim alHour(25) As Long

[Code]...

View 3 Replies

VS 2010 Code Optimization: Array Initialization?

Jan 20, 2011

I'm wondering if you know if there is a better way to write this code in order to speed it up. It has several blocks of if statements filling arrays, like this:

row0: If x < b(1, 1) Then a1(i, j + 1) = 0
If x > b(1, 1) And x < b(1, 2) Then a1(i, j + 1) = 30
If x > b(1, 2) And x < b(1, 3) Then a1(i, j + 1) = 60

[code].....

View 5 Replies

Reference A Report Variable In The Report Properties Code Window Of A Local Report?

Apr 19, 2011

how I can reference a report variable in the Report Properties Code Window of a local report? I have tried Variables!Claimant.Value (for a variable called Claimant) but I get an error "Reference to a non-shared member requires an object reference." I have tried qualifying it with Report. and also with the report name in front of it but I get errors with this also.I have the variable CLaimant defined in the Variables section of the Report Properties.

View 3 Replies

XML Reading Optimization .NET?

Jul 9, 2010

Here's what I've got thus far:

Dim xpDoc As New XPathDocument(strXmlUrl & strXmlInfo(0) & "?xml=1")
Dim xpNav As XPathNavigator = xpDoc.CreateNavigator()
Dim xpExpression(9) As XPathExpression

[code]....

View 4 Replies

.net - Optimization With Visual Studio Or A Logic Bug?

Feb 3, 2011

I have an small physics toy application I am developing. It works fine except the particles will not push each other away, only pull towards, I debugged that sub going through it command by command and realised the value 'H' would not change, what ever it was set to during the first pass through the sub is what it kept, the only way to change this value is to manually set it i.e 'h = 1'. Once the calculation is redone on the 'H' value it resets to what it was previously, even though the x1,y1,x2,y2 are all different, thus meaning H should be different.

I think it is me that has made a mathematical mistake somewhere, but I cannot see where it is. I need a fresh pair of eyes to look over my work. Please let me know if you find anything.

[Code]...

View 1 Replies

Antivirus Scan Speed Optimization?

Oct 30, 2009

I have been developing an antivirus using vb.net. The virus scanner works fine but I was thinking of ways to optimize the scanning speed (because large files take forever)

View 3 Replies

Optimization - Initialisation Of Multiple Classes

Jul 16, 2009

In a project of mine I'm currently doing this:

[code]...

all classes inherit docMain and addTemplateToList( X ) adds x to a List(Of docMain). Now my question is: Is there a better way to do what's done in the code sample? I thought of something like:

[code]...

Is this somehow possible in VB.net (Reflection?)?

View 3 Replies

[2005] DataGridView Scrolling Optimization

Jan 26, 2009

I have a DataGridView where I bind a datasource (sql query) to it. The row count is high with many columns. Trying to scroll through this DGV is painfully slow.

Does anyone know of any kinds of optimization I can do so that I can scroll faster? Like what is the DataGrid doing when you scroll? Does it repaint every screenful? Does it validate every row? It seems like it is doing something unneeded when a user scrolls.

View 4 Replies

Make A Function That Will Return The Name Of Selected Report?

Mar 22, 2010

I need to make a list box with 2 reports in it. Then i need to make a function that wil return the name of selected report, or if no report is selected then return "no report selected".After i made the list box i tried to make the function in the code builder: insert procedure -> function. I tried using an IF statement to make it that when a report is selected the report shows as in a msg... but it keeps saying something is wrong with my code.

View 4 Replies

Performance Optimization For Retrieving Xml Table Data?

Mar 17, 2012

I have written a code which does the thing as the title says. The problem is, the whole process took 10 minutes just for 1000 records. Here is the code:(Written in vb.net 3.5 and sql server ce)

MyConnection.Open()
Dim count As UInt32
cmnd = New SqlCeCommand(sqlstring, MyConnection)

[Code].....

View 1 Replies

Declaring A Report Parameter Makes The Whole Function Get Skipped

Aug 24, 2009

If I comment the paramList line, I see the "CreateDetailedReport()" message box, but if I uncomment it, the message box never appears - there are no errors or anything, it simply seems to not run the function. On my development machine it works properly, but this odd behavior is seen on the target machine.

[code...]

Any reason why this would make the line before it not run - even without producing an error,o
crashing, or something?

View 1 Replies

IDE :: Cannot Find The Optimization Check Box Or Properties For Project 2010?

Mar 7, 2011

i am trying to add a text file in Debug folder. But when i go to project tab to add a new item, there is no option to add a new item? What part of the setting needs to be changed? Using Visual basicExpress 2010.

View 1 Replies

Execute VB Code Behind Function Before Javascript Function?

Jun 14, 2012

Possible Duplicate:

calling ASP function from javascript
okay running this code :
<script type="text/javascript">

[code].....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved