Click here to Skip to main content
15,918,125 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: software licensing Pin
Ray Cassick2-Jun-08 4:38
Ray Cassick2-Jun-08 4:38 
AnswerRe: software licensing Pin
Tim Carmichael2-Jun-08 4:40
Tim Carmichael2-Jun-08 4:40 
GeneralRe: software licensing Pin
duo!@#3-Jun-08 0:51
duo!@#3-Jun-08 0:51 
GeneralRe: software licensing Pin
Kevin Brydon3-Jun-08 3:06
Kevin Brydon3-Jun-08 3:06 
QuestionAdd days in datetime variable change the time Pin
Rupesh Kumar Swami2-Jun-08 2:29
Rupesh Kumar Swami2-Jun-08 2:29 
AnswerRe: Add days in datetime variable change the time Pin
Jay Royall2-Jun-08 2:51
Jay Royall2-Jun-08 2:51 
GeneralRe: Add days in datetime variable change the time Pin
Rupesh Kumar Swami2-Jun-08 2:55
Rupesh Kumar Swami2-Jun-08 2:55 
QuestionGetting error while generating report from report viewer Pin
hisuman1002-Jun-08 1:51
hisuman1002-Jun-08 1:51 
When I am generating report using following code from reportviewer my reportviewer showing the following message.

'A data instance has not been supplied for the data source 'Dataset1_customers'.
Can any one solve the problem?

Regards.
suman

Imports System
Imports System.Data.SqlClient
Public Class Form1
Dim con As New SqlConnection
Dim str As String
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim da As SqlDataAdapter
Dim ds As New DataSet
str = "Integrated Security=SSPI; User Id=sa;Initial Catalog=Northwind; Data Source = suman"
con.ConnectionString = str
con.Open()
str = "select * from customers"
da = New SqlDataAdapter(str, con)
da.Fill(ds, "customers")
ds.DataSetName = "customers"
RV.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Local
RV.LocalReport.ReportPath = "C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\WindowsApplication4\WindowsApplication4\Report1.rdlc"
RV.LocalReport.DataSources.Clear()
RV.LocalReport.DataSources.Add(New Microsoft.Reporting.WinForms.ReportDataSource("customers", ds.Tables(0)))
RV.DocumentMapCollapsed = True
Me.RV.RefreshReport()
End Sub
End Class
AnswerRe: Getting error while generating report from report viewer Pin
Rupesh Kumar Swami2-Jun-08 1:56
Rupesh Kumar Swami2-Jun-08 1:56 
GeneralRe: Getting error while generating report from report viewer Pin
hisuman1002-Jun-08 2:24
hisuman1002-Jun-08 2:24 
GeneralRe: Getting error while generating report from report viewer Pin
Rupesh Kumar Swami2-Jun-08 2:46
Rupesh Kumar Swami2-Jun-08 2:46 
GeneralRe: Getting error while generating report from report viewer Pin
hisuman1002-Jun-08 19:09
hisuman1002-Jun-08 19:09 
GeneralRe: Getting error while generating report from report viewer Pin
Anubhava Dimri6-Jun-08 18:39
Anubhava Dimri6-Jun-08 18:39 
QuestionAuthentication & Authorisation in VB.NET Pin
Jay Royall2-Jun-08 0:07
Jay Royall2-Jun-08 0:07 
QuestionHow could I exclude a member in a group ? Pin
SherTeks2-Jun-08 0:07
SherTeks2-Jun-08 0:07 
QuestionSnooping a class Pin
Chinners1-Jun-08 23:12
Chinners1-Jun-08 23:12 
AnswerRe: Snooping a class Pin
CPallini1-Jun-08 23:52
mveCPallini1-Jun-08 23:52 
JokeRe: Snooping a class Pin
Chinners2-Jun-08 0:23
Chinners2-Jun-08 0:23 
AnswerRe: Snooping a class Pin
Jay Royall2-Jun-08 0:20
Jay Royall2-Jun-08 0:20 
QuestionHow to build a message board with vb.net Pin
Donald Malunda1-Jun-08 21:24
Donald Malunda1-Jun-08 21:24 
AnswerRe: How to build a message board with vb.net Pin
jzonthemtn3-Jun-08 11:34
jzonthemtn3-Jun-08 11:34 
Questionbyte array of data from Java to .NET via HTTP POST Pin
Zerox MXI1-Jun-08 21:03
Zerox MXI1-Jun-08 21:03 
AnswerRe: byte array of data from Java to .NET via HTTP POST Pin
Jay Royall2-Jun-08 4:38
Jay Royall2-Jun-08 4:38 
Questionchenge the value of dataGridView whith comboBox Pin
sahar_mal1-Jun-08 20:25
sahar_mal1-Jun-08 20:25 
QuestionCSLA .net Pin
Tauseef A1-Jun-08 17:45
Tauseef A1-Jun-08 17:45 

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.