how to connect crystal report with vb.net ?

Answer Posted / kafeel ahmad

Take crystal report from toolbox .Take New form (I named it
frmRpt)Then take crystal report Viewer from tool box and
place it on new form(frmRpt) I named crystal report Viewer
as crptVW
double click on newform(frmRpt) and place this code---

Public Class frmRpt
Public strRptName As Object
Public strRptFilter As String
Private Sub frmRpt_Load(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles MyBase.Load
If strRptFilter <> "" Then
crptVW.SelectionFormula = strRptFilter
End If
crptVW.ReportSource = strRptName
crptVW.Show()
End Sub
End Class


now if u want to call it on button_click then paste this
code on that button_click event ------

Dim objRpt As New frmRpt
objRpt.strRptName = New crList
' objRpt.strRptFilter = "{ConsultantMaster.ConId}="
& cboConIDX.SelectedValue 'if want to filter
objRpt.Show()

'now u can open as many crystal report just paste code
above on button_click()

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the shared variables?

550


Explain trace in vb.net?

518


What is difference between metadata and manifest?

565


Explain the difference between thread and process?

506


Explain about the performance of visual basic?

589






Can you please explain the difference between dispose and finalize()?

501


What is the role of new keyword?

622


source code for how to login a vb.net application ?

591


What is sorting in vb?

519


What is a static class?

591


Explain about delegate?

513


How to create a constant in vb.net?

594


What is the difference between Namespace and Assembly?

579


What are the different types of a stream?

560


how to deploy vb.net with key and evaluation time? any one can help me?

1758