how to connect crystal report with vb.net ?
Answers were Sorted based on User's Feedback
Answer / ranjith
Click on Project menu
then Click Add New Item
Choose Crystal Report
Give the name of the report that you want to give
Click on Add Report
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / 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 |
What is the importance of a Button control?
give me code for selecting itemcode and correspondin vendor details wll displays in the gridview?
What does assert() method do In VB.NET
What is the Difference between Overriding and overloading?
How do you do multithreading application in VB ?
Explain how does the xmlserializer work?
Can you please explain the difference between namespace and assembly?
Define naming convention?
What is non_deterministic finalization?
Described strong typing
What is the difference between convert.tostring and i.tostring method?
diff b/w windows and console application?