Click here to Skip to main content
15,885,757 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionCrystal Reports Custom Parameter Passing Pin
JC.KaNNaN15-Jun-09 1:44
JC.KaNNaN15-Jun-09 1:44 
AnswerRe: Crystal Reports Custom Parameter Passing Pin
Kschuler15-Jun-09 8:55
Kschuler15-Jun-09 8:55 
GeneralRe: Crystal Reports Custom Parameter Passing Pin
JC.KaNNaN16-Jun-09 1:20
JC.KaNNaN16-Jun-09 1:20 
GeneralRe: Crystal Reports Custom Parameter Passing Pin
Kschuler16-Jun-09 2:41
Kschuler16-Jun-09 2:41 
GeneralRe: Crystal Reports Custom Parameter Passing Pin
JC.KaNNaN16-Jun-09 3:38
JC.KaNNaN16-Jun-09 3:38 
GeneralRe: Crystal Reports Custom Parameter Passing Pin
Kschuler16-Jun-09 3:47
Kschuler16-Jun-09 3:47 
GeneralRe: Crystal Reports Custom Parameter Passing Pin
JC.KaNNaN16-Jun-09 20:29
JC.KaNNaN16-Jun-09 20:29 
GeneralRe: Crystal Reports Custom Parameter Passing Pin
Kschuler17-Jun-09 3:00
Kschuler17-Jun-09 3:00 
What I gave you earlier IS the solution for passing more than one table:

In order to pass in two tables, you need to use a DataSet object. This is how you declare one named ds:
Dim ds as New DataSet

Then you have to add your tables to it. If your tables are called dtTable1 and dtTable2, this is how you would add them to the DataSet
ds.Tables.Add(dtTable1)<br />
ds.Tables.Add(dtTable2)


Then you pass the DataSet into the reportDocument object, like this:
reportDocument1.SetDataSource(ds)

If this code isn't working for you, you're going to have to give me more information about why it isn't working and what error messages you are getting.
AnswerRe: Crystal Reports Custom Parameter Passing Pin
Aiman Farouk Mohamed15-Jun-09 22:07
Aiman Farouk Mohamed15-Jun-09 22:07 
QuestionVisual Basic Multilingual Support - Picking Desired Resource Pin
vhassan15-Jun-09 1:32
vhassan15-Jun-09 1:32 
AnswerRe: Visual Basic Multilingual Support - Picking Desired Resource Pin
Baran M15-Jun-09 4:35
Baran M15-Jun-09 4:35 
QuestionDatarepater Control (Winforms) Pin
Alan Bates15-Jun-09 1:20
Alan Bates15-Jun-09 1:20 
QuestionDataGridView how to get items Pin
alwinSCH15-Jun-09 0:31
alwinSCH15-Jun-09 0:31 
AnswerRe: DataGridView how to get items Pin
Henry Minute15-Jun-09 0:39
Henry Minute15-Jun-09 0:39 
QuestionHow to deploy dll before custom action Pin
Mithun.Shitole14-Jun-09 23:58
Mithun.Shitole14-Jun-09 23:58 
AnswerRe: How to deploy dll before custom action Pin
Kschuler15-Jun-09 9:00
Kschuler15-Jun-09 9:00 
GeneralRe: How to deploy dll before custom action Pin
Mithun.Shitole15-Jun-09 9:09
Mithun.Shitole15-Jun-09 9:09 
QuestionVista like Sort,Group,Stack,Filter dropdown on Listview ? Pin
saxgod14-Jun-09 23:34
saxgod14-Jun-09 23:34 
AnswerRe: Vista like Sort,Group,Stack,Filter dropdown on Listview ? Pin
Dave Kreskowiak15-Jun-09 4:01
mveDave Kreskowiak15-Jun-09 4:01 
GeneralRe: Vista like Sort,Group,Stack,Filter dropdown on Listview ? Pin
saxgod15-Jun-09 23:09
saxgod15-Jun-09 23:09 
GeneralRe: Vista like Sort,Group,Stack,Filter dropdown on Listview ? Pin
Dave Kreskowiak16-Jun-09 12:01
mveDave Kreskowiak16-Jun-09 12:01 
QuestionWindowstate Pin
JaganBR14-Jun-09 23:09
JaganBR14-Jun-09 23:09 
AnswerRe: Windowstate Pin
Christian Graus14-Jun-09 23:18
protectorChristian Graus14-Jun-09 23:18 
GeneralRe: Windowstate Pin
JaganBR14-Jun-09 23:52
JaganBR14-Jun-09 23:52 
GeneralRe: Windowstate Pin
Christian Graus15-Jun-09 0:48
protectorChristian Graus15-Jun-09 0:48 

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.