Click here to Skip to main content
15,886,873 members
Home / Discussions / C#
   

C#

 
GeneralRe: Implementation of Doubly linked list Pin
Luc Pattyn18-Sep-09 3:47
sitebuilderLuc Pattyn18-Sep-09 3:47 
GeneralRe: Implementation of Doubly linked list Pin
OriginalGriff18-Sep-09 4:22
mveOriginalGriff18-Sep-09 4:22 
AnswerRe: Implementation of Doubly linked list Pin
PIEBALDconsult18-Sep-09 4:40
mvePIEBALDconsult18-Sep-09 4:40 
QuestionNeed Help in Regular Expression? Pin
Jollyguy18-Sep-09 1:47
Jollyguy18-Sep-09 1:47 
AnswerRe: Need Help in Regular Expression? Pin
Luc Pattyn18-Sep-09 1:59
sitebuilderLuc Pattyn18-Sep-09 1:59 
QuestionHow to Install MySql in silent mode with Setup Application Pin
Paramhans Dubey18-Sep-09 1:45
professionalParamhans Dubey18-Sep-09 1:45 
QuestionDOM Problems ? Pin
Jacobb Michael18-Sep-09 1:22
Jacobb Michael18-Sep-09 1:22 
AnswerRe: DOM Problems ? Pin
SeMartens18-Sep-09 2:42
SeMartens18-Sep-09 2:42 
Questioncan any body tell me the answer for this... Pin
User 653586818-Sep-09 1:00
User 653586818-Sep-09 1:00 
AnswerRe: can any body tell me the answer for this... Pin
Tamer Oz18-Sep-09 1:03
Tamer Oz18-Sep-09 1:03 
AnswerRe: can any body tell me the answer for this... Pin
Jacobb Michael18-Sep-09 1:06
Jacobb Michael18-Sep-09 1:06 
AnswerRe: can any body tell me the answer for this... Pin
dan!sh 18-Sep-09 1:45
professional dan!sh 18-Sep-09 1:45 
QuestionRe: can any body tell me the answer for this... Pin
harold aptroot18-Sep-09 1:46
harold aptroot18-Sep-09 1:46 
AnswerRe: can any body tell me the answer for this... Pin
Luc Pattyn18-Sep-09 2:02
sitebuilderLuc Pattyn18-Sep-09 2:02 
QuestionReport Creating in C# ? Pin
Mohammad Dayyan18-Sep-09 0:54
Mohammad Dayyan18-Sep-09 0:54 
AnswerRe: Report Creating in C# ? Pin
Jacobb Michael18-Sep-09 1:10
Jacobb Michael18-Sep-09 1:10 
GeneralRe: Report Creating in C# ? Pin
Mohammad Dayyan18-Sep-09 1:35
Mohammad Dayyan18-Sep-09 1:35 
GeneralRe: Report Creating in C# ? Pin
Jacobb Michael18-Sep-09 1:58
Jacobb Michael18-Sep-09 1:58 
GeneralRe: Report Creating in C# ? Pin
Mohammad Dayyan18-Sep-09 2:12
Mohammad Dayyan18-Sep-09 2:12 
GeneralRe: Report Creating in C# ? Pin
Jacobb Michael18-Sep-09 17:22
Jacobb Michael18-Sep-09 17:22 
Hi,
It is just enough to google, you will get the answers any way see the bellow code

DataTable dtStudent = new DataTable();
            dtStudent = ConstructDataTable();
 Report.CrystalReport1 objStudent = new WindowsCrystal.Report.CrystalReport1();
                objStudent.SetDataSource(dtStudent);
                crystalReportViewer1.ReportSource = objStudent;


private DataTable ConstructDataTable()
        {
            DataTable dtTmp = new DataTable();
            dtTmp.Columns.Add("Id", typeof(int));
            dtTmp.Columns.Add("Name", typeof(string));
            dtTmp.Columns.Add("Age", typeof(int));
            dtTmp.Columns.Add("Score", typeof(int));

            dtTmp.Rows.Add(1, "Jacob", 24, 50);
            dtTmp.Rows.Add(2, "martin", 23, 90);
            dtTmp.Rows.Add(3, "Jeyakumar", 24, 70);
            dtTmp.Rows.Add(4, "Manic", 23, 59);
            dtTmp.Rows.Add(5, "Rosario", 27, 48);
           
            return dtTmp;
        }

GeneralRe: Report Creating in C# ? Pin
Mohammad Dayyan18-Sep-09 18:09
Mohammad Dayyan18-Sep-09 18:09 
GeneralRe: Report Creating in C# ? Pin
Pete O'Hanlon18-Sep-09 2:07
mvePete O'Hanlon18-Sep-09 2:07 
GeneralRe: Report Creating in C# ? Pin
Mohammad Dayyan18-Sep-09 2:15
Mohammad Dayyan18-Sep-09 2:15 
AnswerRe: Report Creating in C# ? Pin
MiddleTommy18-Sep-09 3:39
MiddleTommy18-Sep-09 3:39 
QuestionHow to scroll the scrollbar of treeview control automatically? Pin
kmb8918-Sep-09 0:31
kmb8918-Sep-09 0:31 

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.