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
Can you please explain the difference between value and reference types?
Explain trace in vb.net?
What are the objects in asp.net?
What is the maximum size of the textbox?
What is stack used for in vb. Net?
How to store images in sql server database through vb.net?
Explain the difference between c# and vb.net?
What are the features of c# which are not present in vb.net?
What is intermediate langauge?
Explain option strict?
What is pre-jit?
Name a feature which is common to all .net languages?
source code for how to login a vb.net application ?
Explain the components of common language runtime.
Which properties are used to bind a DataGridView control?