Click here to Skip to main content
15,886,087 members

Griffin2002 - Professional Profile



Summary

    Blog RSS
5
Authority
4
Debator
2
Enquirer
10
Organiser
135
Participant
0
Author
0
Editor
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralFailed to load expression host assembly report Details: Object reference not set to an instance of an object Pin
Griffin200225-Apr-07 13:53
Griffin200225-Apr-07 13:53 
I am having problems deploying an .NET application that is using a ReportViewer for viewing a .rdlc (local report). It bombs when it executes the RefreshReport.



Private Sub LoadProposalReport()
' Local variables
Dim objParameters As New ReportParameter("argContractID", CurrentContractID())
Dim lstParameters(0) As ReportParameter


lstParameters(0) = objParameters

' reset the report viewer properties
Me.rvw_Proposal.Reset()

' set the report viewer to process a local report
Me.rvw_Proposal.ProcessingMode = ProcessingMode.Local

' set the local report path (note: the properties of the project post-build event
' include this command in order to use this embedded report from the bin directory:
' copy "$(ProjectDir)\Reports\rptProposal.rdlc" "$(TargetDir)"
'Me.rvw_Proposal.LocalReport.ReportPath = "c:\program files\animal\plugins\frp\rptProposal.rdlc"
Me.rvw_Proposal.LocalReport.ReportEmbeddedResource = "FRP.rptProposal.rdlc"
Me.rvw_Proposal.LocalReport.EnableExternalImages = True
Me.rvw_Proposal.LocalReport.SetParameters(lstParameters)

' add a datasource to the report viewer
' note: this must be a data table
Me.rvw_Proposal.LocalReport.DataSources.Add(GetDataForProposal())
AddHandler Me.rvw_Proposal.LocalReport.SubreportProcessing, AddressOf Me.SubreportProcessingEventHandler

' this will refresh the report in the viewer with the above settings
Me.rvw_Proposal.RefreshReport()

' Only save the report if there have been changes made and there are signatures.
If m_blnChangesMadeToProposal Then SaveReport()
End Sub
GeneralRe: Failed to load expression host assembly report Details: Object reference not set to an instance of an object Pin
LurkingVariable5-Aug-09 9:59
LurkingVariable5-Aug-09 9:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.