How To Create RDLC Report in VB.Net Windows Form Application With SQL Server



#This tutorial teach you How to create RDLC report and how to load data from SQL database to RDLC report in vb.net windows form application step by step.

This tutorial also covers
– How to create windows form application using VB
– How to connect SQL server with visual studio using VB
– How to create DataSet
– How to create and design RDLC report
– How to connect Dataset in RDLC report
– How to load record from sql server to RDLC report

Visual Studio Code –

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

Dim con As New SqlConnection(“Data Source=aaaaaaa29”)
Dim com As New SqlCommand(“Select * from UserInfo_Tab”, con)
Dim sd As New SqlDataAdapter(com)
Dim dt As New DataTable
sd.Fill(dt)

With Me.ReportViewer1.LocalReport
.DataSources.Clear()
.ReportPath = “Report1.rdlc”
.DataSources.Add(New ReportDataSource(“DataSet1”, dt))
End With
Me.ReportViewer1.RefreshReport()
End Sub
——
This channel covers all the programming tutorial related with .Net- C#, linq, VB, SQL, Android, HTML, CSS, jQuery, Crystal Report and Microsoft Report.
So, Please subscribe and keep in touch.
https://www.youtube.com/c/ProgrammingGeek/playlists

Visit my page in Facebook
https://www.facebook.com/programminggeek7
——

More Tags
#CreateRDLCReportInVB.Net #RDLCReportInVB.NetWithSQL

programminggeek,how to create rdlc report in vb.net windows application step by step,how to create rdlc report in vb.net,create rdlc report in vb.net,create rdlc report in vb.net step by step,rdlc report in vb.net windows application,vb.net report viewer,rdlc report tutorial,vb.net report designer,rdlc report designer,rdlc report,rdlc,microsoft report viewer

Comments are closed.