Click here to Skip to main content
15,900,258 members
Home / Discussions / C#
   

C#

 
GeneralRe: Creating dockable form Pin
Roger Alsing26-Sep-04 7:15
Roger Alsing26-Sep-04 7:15 
GeneralRe: Creating dockable form Pin
filburt129-Sep-04 10:41
filburt129-Sep-04 10:41 
Questionhow Terrarium work ? Pin
sssa200026-Sep-04 6:22
sssa200026-Sep-04 6:22 
AnswerRe: how Terrarium work ? Pin
Christian Graus26-Sep-04 12:20
protectorChristian Graus26-Sep-04 12:20 
GeneralRe: how Terrarium work ? Pin
peterchen26-Sep-04 12:47
peterchen26-Sep-04 12:47 
AnswerRe: how Terrarium work ? Pin
Anonymous27-Sep-04 1:24
Anonymous27-Sep-04 1:24 
GeneralCrystal Report and C# Windows Programming Pin
Member 103017926-Sep-04 3:54
Member 103017926-Sep-04 3:54 
GeneralRe: Crystal Report and C# Windows Programming Pin
Alex Korchemniy26-Sep-04 9:25
Alex Korchemniy26-Sep-04 9:25 
Here's the fast way of creating a report...

- Create a typed dataset
- Add a crystal report file to your project
- As a datasource select ADO.net and navigate to the dataset. Complete the wizard selecting any fields that you need to use
- Save any changes to the crystal report
- Crystal reports generates a typed wrapper for the report. Create an instance of that class.

MyReport r = new Report();

- Fill your dataset
- Pass the data into the the report object by doing this...

r.SetDataSource(dataset);

- add a crystal report viewer control to you form
- passed the report object to the view control

crystalReportViewer1.ReportSource = r;

This should work. Have fun Smile | :)
GeneralSQL Server Ce - Stored Procedures Pin
mathon25-Sep-04 22:56
mathon25-Sep-04 22:56 
GeneralRe: SQL Server Ce - Stored Procedures Pin
João Paulo Figueira25-Sep-04 23:59
professionalJoão Paulo Figueira25-Sep-04 23:59 
GeneralRe: SQL Server Ce - Stored Procedures Pin
mathon26-Sep-04 1:50
mathon26-Sep-04 1:50 
GeneralRe: SQL Server Ce - Stored Procedures Pin
João Paulo Figueira26-Sep-04 2:03
professionalJoão Paulo Figueira26-Sep-04 2:03 
GeneralRunning an application from my program Pin
youusuf25-Sep-04 21:20
youusuf25-Sep-04 21:20 
GeneralRe: Running an application from my program Pin
Alex Korchemniy25-Sep-04 21:44
Alex Korchemniy25-Sep-04 21:44 
GeneralRe: Running an application from my program Pin
SimonS25-Sep-04 22:31
SimonS25-Sep-04 22:31 
GeneralUsers Password Retrive Pin
Sakkijha25-Sep-04 20:52
Sakkijha25-Sep-04 20:52 
GeneralRe: Users Password Retrive Pin
Alex Korchemniy25-Sep-04 21:49
Alex Korchemniy25-Sep-04 21:49 
GeneralRe: Users Password Retrive Pin
Sakkijha25-Sep-04 21:52
Sakkijha25-Sep-04 21:52 
GeneralRe: Users Password Retrive Pin
Alex Korchemniy25-Sep-04 21:54
Alex Korchemniy25-Sep-04 21:54 
GeneralRe: Users Password Retrive Pin
Sakkijha25-Sep-04 21:57
Sakkijha25-Sep-04 21:57 
GeneralRe: Users Password Retrive Pin
Alex Korchemniy25-Sep-04 22:02
Alex Korchemniy25-Sep-04 22:02 
GeneralRe: Users Password Retrive Pin
Sakkijha25-Sep-04 22:12
Sakkijha25-Sep-04 22:12 
GeneralRemoting Question Pin
jtmtv1825-Sep-04 20:01
jtmtv1825-Sep-04 20:01 
GeneralRe: Remoting Question Pin
LongRange.Shooter27-Sep-04 9:45
LongRange.Shooter27-Sep-04 9:45 
GeneralAfterCheck event Arg Pin
CocciaStella25-Sep-04 18:33
CocciaStella25-Sep-04 18:33 

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.