Click here to Skip to main content
15,908,581 members
Home / Discussions / C#
   

C#

 
AnswerRe: Checking DateTimePicker date is => today's date? Pin
mark_w_15-Oct-08 5:46
mark_w_15-Oct-08 5:46 
QuestionPut App in System Tray Not Working Pin
#realJSOP15-Oct-08 0:26
professional#realJSOP15-Oct-08 0:26 
AnswerRe: Put App in System Tray Not Working Pin
Simon P Stevens15-Oct-08 0:49
Simon P Stevens15-Oct-08 0:49 
GeneralRe: Put App in System Tray Not Working Pin
#realJSOP15-Oct-08 0:59
professional#realJSOP15-Oct-08 0:59 
GeneralRe: Put App in System Tray Not Working Pin
Simon P Stevens15-Oct-08 1:13
Simon P Stevens15-Oct-08 1:13 
GeneralRe: Put App in System Tray Not Working Pin
#realJSOP15-Oct-08 2:34
professional#realJSOP15-Oct-08 2:34 
AnswerRe: Put App in System Tray Not Working Pin
Giorgi Dalakishvili15-Oct-08 1:04
mentorGiorgi Dalakishvili15-Oct-08 1:04 
GeneralRe: Put App in System Tray Not Working Pin
#realJSOP15-Oct-08 2:32
professional#realJSOP15-Oct-08 2:32 
GeneralRe: Put App in System Tray Not Working Pin
Giorgi Dalakishvili15-Oct-08 2:36
mentorGiorgi Dalakishvili15-Oct-08 2:36 
GeneralRe: Put App in System Tray Not Working Pin
#realJSOP15-Oct-08 2:41
professional#realJSOP15-Oct-08 2:41 
GeneralRe: Put App in System Tray Not Working Pin
#realJSOP15-Oct-08 6:56
professional#realJSOP15-Oct-08 6:56 
GeneralRe: Put App in System Tray Not Working Pin
Giorgi Dalakishvili15-Oct-08 7:07
mentorGiorgi Dalakishvili15-Oct-08 7:07 
QuestionCrystal report data Pin
Maddie from Dartford15-Oct-08 0:26
Maddie from Dartford15-Oct-08 0:26 
AnswerRe: Crystal report data Pin
Muhammad Shahid Farooq15-Oct-08 4:33
professionalMuhammad Shahid Farooq15-Oct-08 4:33 
AnswerRe: Crystal report data Pin
nelsonpaixao16-Oct-08 13:21
nelsonpaixao16-Oct-08 13:21 
Hi,
i really dont understand what you are asking but i assume that you want to display data (varchar,int,image,etc) from the database to crystal reports, right? OK.

- Add a report and a dataset to your solution
- design the dataset to fit 100% the store_procedure you are triggering, meaning if you have "select first_name 'FN',last_name 'LN' ..." them datatable fields as to be named FN and LN, and have same type!!!
- select the dataset as your datasource, and them drag fields to the report
- after that is easy, keep doing like it was a datagridview

// DataGridView Report
DataGridView_Report.DataSource = dt;
// Crystal Report
CrystalReport_ConstructorStandings rpt = new CrystalReport_ConstructorStandings();
rpt.SetDataSource(dt);
CrystalReportViewer_Report.ReportSource = rpt;


Only beware of the image formats that are not allowed in crystal reports
(Can´t help you more, but, if you want to ask something related to this go my profile) D'Oh! | :doh:

nelsonpaixao@yahoo.com.br

trying to help & get help

QuestionTreeView mix combobox Pin
drcmomo15-Oct-08 0:23
drcmomo15-Oct-08 0:23 
Questionarray Pin
arkiboys14-Oct-08 23:57
arkiboys14-Oct-08 23:57 
AnswerRe: array Pin
Giorgi Dalakishvili15-Oct-08 0:07
mentorGiorgi Dalakishvili15-Oct-08 0:07 
AnswerRe: array Pin
Pete O'Hanlon15-Oct-08 0:11
mvePete O'Hanlon15-Oct-08 0:11 
GeneralRe: array Pin
J4amieC15-Oct-08 0:13
J4amieC15-Oct-08 0:13 
GeneralRe: array Pin
Pete O'Hanlon15-Oct-08 0:18
mvePete O'Hanlon15-Oct-08 0:18 
AnswerRe: array Pin
J4amieC15-Oct-08 0:12
J4amieC15-Oct-08 0:12 
AnswerRe: array Pin
#realJSOP15-Oct-08 0:28
professional#realJSOP15-Oct-08 0:28 
GeneralRe: array Pin
PIEBALDconsult15-Oct-08 1:56
mvePIEBALDconsult15-Oct-08 1:56 
GeneralRe: array [modified] Pin
#realJSOP15-Oct-08 2:25
professional#realJSOP15-Oct-08 2:25 

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.