how to connect crystal report with vb.net ?

Answers were Sorted based on User's Feedback



how to connect crystal report with vb.net ?..

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

how to connect crystal report with vb.net ?..

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

Post New Answer

More VB.NET Interview Questions

Explain internal keyword in .net framework?

0 Answers  


Explain namespace?

0 Answers  


How can we store decimal data in .net?

0 Answers  


What is difference between import system.data.sqlclient,system.data.oledb?

0 Answers  


How would you implement inheritance using vb.net?

0 Answers  






what is the advantage of option strict on?

0 Answers  


What is the purpose of an Assembly?

0 Answers  


described weak typing?

0 Answers  


How to view an assembly?

0 Answers  


What is break mode? What are the options to step through code?

0 Answers  


What is the maximum size of the textbox?

0 Answers  


What are the different types of applications supported in .net (or) .net framework?

0 Answers  


Categories