Click here to Skip to main content
15,888,027 members
Home / Discussions / C#
   

C#

 
GeneralSCP to a unix box Pin
Wjousts26-Sep-03 6:37
Wjousts26-Sep-03 6:37 
GeneralSending string array through network Pin
Gambit00726-Sep-03 5:36
Gambit00726-Sep-03 5:36 
GeneralRe: Sending string array through network Pin
James Simpson26-Sep-03 6:12
James Simpson26-Sep-03 6:12 
GeneralRe: Sending string array through network Pin
Gambit00726-Sep-03 14:07
Gambit00726-Sep-03 14:07 
GeneralDate and time Pin
totig26-Sep-03 3:48
totig26-Sep-03 3:48 
GeneralRe: Date and time Pin
Nick van der Plas26-Sep-03 4:04
Nick van der Plas26-Sep-03 4:04 
QuestionCrystal Reports? Pin
Marix26-Sep-03 2:58
Marix26-Sep-03 2:58 
AnswerRe: Crystal Reports? Pin
Member 56585726-Sep-03 8:00
Member 56585726-Sep-03 8:00 
You'll want to start by creating a data schema for your data source and adding this too your project. You can do this by either using datasource.WriteXmlSchema(<filename>) or by hand.

Once you have the schema in your project go into you report and right click anywhere on it and select Database->Add/Remove Database. You should see your dataset under Project data-> ADO .NET datasets. Now all of the tables and fields from that dataset should be added to the Field explorer in the report, go ahead and drag them on too the report.

Once you have laid out your report you can use the following code to assign the dataset too it:

MyReport oRpt = New MyReport

oRpt.SetDataSource(mydataset)

CrystalReportViewer1.DisplayGroupTree = False
CrystalReportViewer1.ShowGroupTreeButton = False
CrystalReportViewer1.ReportSource = oRpt
GeneralRe: Crystal Reports? Pin
Member 56585726-Sep-03 8:03
Member 56585726-Sep-03 8:03 
GeneralRe: Crystal Reports? Pin
Marix28-Sep-03 21:58
Marix28-Sep-03 21:58 
Questionhow to speed up GDI+ without using pointer Pin
zecodela25-Sep-03 23:34
zecodela25-Sep-03 23:34 
AnswerRe: how to speed up GDI+ without using pointer Pin
Anonymous26-Sep-03 1:59
Anonymous26-Sep-03 1:59 
GeneralRe: how to speed up GDI+ without using pointer Pin
fadee26-Sep-03 2:02
fadee26-Sep-03 2:02 
AnswerRe: how to speed up GDI+ without using pointer Pin
fadee26-Sep-03 4:57
fadee26-Sep-03 4:57 
GeneralRe: how to speed up GDI+ without using pointer Pin
zecodela26-Sep-03 5:06
zecodela26-Sep-03 5:06 
GeneralRe: how to speed up GDI+ without using pointer Pin
fadee26-Sep-03 6:29
fadee26-Sep-03 6:29 
GeneralRe: how to speed up GDI+ without using pointer Pin
ralfoide26-Sep-03 8:34
ralfoide26-Sep-03 8:34 
GeneralRe: how to speed up GDI+ without using pointer Pin
zecodela26-Sep-03 15:49
zecodela26-Sep-03 15:49 
GeneralRe: how to speed up GDI+ without using pointer Pin
zecodela26-Sep-03 15:51
zecodela26-Sep-03 15:51 
GeneralRe: how to speed up GDI+ without using pointer Pin
zecodela26-Sep-03 19:02
zecodela26-Sep-03 19:02 
GeneralRe: how to speed up GDI+ without using pointer Pin
fadee26-Sep-03 20:00
fadee26-Sep-03 20:00 
GeneralAding a dynamic web reference at runtime Pin
Obi725-Sep-03 22:10
Obi725-Sep-03 22:10 
GeneralRe: Ading a dynamic web reference at runtime Pin
Kannan Kalyanaraman26-Sep-03 0:57
Kannan Kalyanaraman26-Sep-03 0:57 
GeneralRe: Ading a dynamic web reference at runtime Pin
Obi726-Sep-03 1:32
Obi726-Sep-03 1:32 
GeneralSetup creation problem Pin
..Hubert..25-Sep-03 22:03
..Hubert..25-Sep-03 22:03 

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.