Click here to Skip to main content
15,888,351 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 4:50
DHARM PAL5-Feb-15 4:50 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
Richard Deeming5-Feb-15 4:51
mveRichard Deeming5-Feb-15 4:51 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 5:00
DHARM PAL5-Feb-15 5:00 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
Richard Deeming5-Feb-15 5:13
mveRichard Deeming5-Feb-15 5:13 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 5:17
DHARM PAL5-Feb-15 5:17 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
Richard Deeming5-Feb-15 5:51
mveRichard Deeming5-Feb-15 5:51 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 6:19
DHARM PAL5-Feb-15 6:19 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
Richard Deeming5-Feb-15 6:53
mveRichard Deeming5-Feb-15 6:53 
Just change the query that you're loading the data from:
VB.NET
da = new SqlDataAdapter("SELECT * FROM subsummary WHERE [course] = @Course", Conn)
da.SelectCommand.Parameters.AddWithValue("@Course", ddlCourse.SelectedValue)

ds = New DataSet()
da.Fill(ds, "subsummary")

sReportDataSource.Name = "DataSet1"
sReportDataSource.Value = ds.Tables(0)

RDLCreportview.ReportViewer1.LocalReport.ReportPath = Application.StartupPath & "\Report\SubjectSummary.rdlc"
RDLCreportview.ReportViewer1.SetDisplayMode(DisplayMode.PrintLayout)
RDLCreportview.ReportViewer1.RefreshReport()

ds.Dispose()
ds = Nothing

RDLCreportview.ShowDialog()
RDLCreportview.Dispose()




"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer


GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 7:13
DHARM PAL5-Feb-15 7:13 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
Richard Deeming5-Feb-15 8:00
mveRichard Deeming5-Feb-15 8:00 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 8:06
DHARM PAL5-Feb-15 8:06 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
Richard Deeming5-Feb-15 8:11
mveRichard Deeming5-Feb-15 8:11 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 8:22
DHARM PAL5-Feb-15 8:22 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
Richard Deeming5-Feb-15 8:35
mveRichard Deeming5-Feb-15 8:35 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 9:09
DHARM PAL5-Feb-15 9:09 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL5-Feb-15 20:44
DHARM PAL5-Feb-15 20:44 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
Richard Deeming6-Feb-15 2:03
mveRichard Deeming6-Feb-15 2:03 
GeneralRe: how to create RDLC report using multiple sql columns with same values to count in vb.net Pin
DHARM PAL6-Feb-15 2:48
DHARM PAL6-Feb-15 2:48 
QuestionHow To Start a Remote Desktop Connection to remote host from VB Pin
Member 111939643-Feb-15 4:57
Member 111939643-Feb-15 4:57 
AnswerRe: How To Start a Remote Desktop Connection to remote host from VB Pin
Eddy Vluggen3-Feb-15 7:23
professionalEddy Vluggen3-Feb-15 7:23 
QuestionA C# DLL produce error on VB.net project Pin
dilkonika2-Feb-15 8:12
dilkonika2-Feb-15 8:12 
AnswerRe: A C# DLL produce error on VB.net project Pin
Dave Kreskowiak2-Feb-15 8:24
mveDave Kreskowiak2-Feb-15 8:24 
GeneralRe: A C# DLL produce error on VB.net project Pin
dilkonika2-Feb-15 8:42
dilkonika2-Feb-15 8:42 
GeneralRe: A C# DLL produce error on VB.net project Pin
Richard Deeming2-Feb-15 8:58
mveRichard Deeming2-Feb-15 8:58 
GeneralRe: A C# DLL produce error on VB.net project Pin
dilkonika2-Feb-15 9:10
dilkonika2-Feb-15 9:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.