Click here to Skip to main content
15,888,286 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
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 
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 
i applied like this:

VB
Public Sub Show_SubjectSummary()
        da = New SqlDataAdapter("SELECT * FROM viewsubsummary WHERE [course] = 'B.A. I'", Conn)
        'da.SelectCommand.Parameters.AddWithValue("@Course", cmbsession.SelectedValue)
        ds = New DataSet()
        da.Fill(ds, "viewsubsummary")
        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()
    End Sub


but it is showing error:
A data source instance has not been supplied for the data source'DataSet1’
viewsubsummary = my sqlview as u suggested
tblstudetail= my original table where all records stored
kindly help
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 
GeneralRe: A C# DLL produce error on VB.net project Pin
dilkonika2-Feb-15 9:14
dilkonika2-Feb-15 9:14 

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.