Click here to Skip to main content
15,884,702 members
Home / Discussions / C#
   

C#

 
GeneralRe: ngen in windows applications c# Pin
Dave Kreskowiak10-Aug-14 4:45
mveDave Kreskowiak10-Aug-14 4:45 
AnswerRe: ngen in windows applications c# Pin
V.10-Aug-14 7:20
professionalV.10-Aug-14 7:20 
QuestionMulti-label Classifiers based Associative Classification (MCAC) algorithm Pin
sadish67-Aug-14 17:03
sadish67-Aug-14 17:03 
AnswerRe: Multi-label Classifiers based Associative Classification (MCAC) algorithm Pin
Mycroft Holmes7-Aug-14 18:02
professionalMycroft Holmes7-Aug-14 18:02 
AnswerRe: Multi-label Classifiers based Associative Classification (MCAC) algorithm Pin
OriginalGriff7-Aug-14 21:30
mveOriginalGriff7-Aug-14 21:30 
QuestionDotNetBar (DevComponents) DockingContainer Pin
HobbyProggy7-Aug-14 1:53
professionalHobbyProggy7-Aug-14 1:53 
AnswerRe: DotNetBar (DevComponents) DockingContainer Pin
Eddy Vluggen7-Aug-14 23:24
professionalEddy Vluggen7-Aug-14 23:24 
Questionassign the filed for XtraReport of Devexpress ? Pin
Member 24584677-Aug-14 0:01
Member 24584677-Aug-14 0:01 
After you assign the DataSource to the Report, I want to assign to the label, textbox, xrTableCell1,... Report should I do? or I want to DataBinding, currently running it does not appear at all records

C#
// After successful connection Northwind
    // Create an empty report.
    XtraReport1 report = new XtraReport1();    string sql = "select * from Customers";
    DataSet ds = new DataSet();
    SqlDataAdapter da = new SqlDataAdapter(sql, cnn);
    da.Fill(ds);            
    report.DataSource = ds;
    report.DataAdapter = da; 
    report.DataMember = Customers; // Table Customers of Northwind

    report.ShowPreview();

Question.net Query Pin
Member 109952356-Aug-14 22:26
Member 109952356-Aug-14 22:26 
AnswerRe: .net Query Pin
Richard MacCutchan6-Aug-14 22:40
mveRichard MacCutchan6-Aug-14 22:40 
AnswerRe: .net Query Pin
Keith Barrow7-Aug-14 1:45
professionalKeith Barrow7-Aug-14 1:45 
AnswerRe: .net Query Pin
Gerry Schmitz7-Aug-14 11:00
mveGerry Schmitz7-Aug-14 11:00 
QuestionConnecting to License Application on Server Pin
Jassim Rahma6-Aug-14 20:25
Jassim Rahma6-Aug-14 20:25 
AnswerRe: Connecting to License Application on Server Pin
Bernhard Hiller6-Aug-14 20:39
Bernhard Hiller6-Aug-14 20:39 
QuestionSame EXE vs Different EXE Pin
KUMAR6196-Aug-14 19:36
professionalKUMAR6196-Aug-14 19:36 
AnswerRe: Same EXE vs Different EXE Pin
Akhil Mittal6-Aug-14 20:05
professionalAkhil Mittal6-Aug-14 20:05 
AnswerRe: Same EXE vs Different EXE Pin
Bernhard Hiller6-Aug-14 20:43
Bernhard Hiller6-Aug-14 20:43 
AnswerRe: Same EXE vs Different EXE Pin
Mycroft Holmes6-Aug-14 21:54
professionalMycroft Holmes6-Aug-14 21:54 
GeneralRe: Same EXE vs Different EXE Pin
KUMAR6196-Aug-14 23:06
professionalKUMAR6196-Aug-14 23:06 
GeneralRe: Same EXE vs Different EXE Pin
Mycroft Holmes6-Aug-14 23:10
professionalMycroft Holmes6-Aug-14 23:10 
GeneralRe: Same EXE vs Different EXE Pin
KUMAR6196-Aug-14 23:49
professionalKUMAR6196-Aug-14 23:49 
GeneralRe: Same EXE vs Different EXE Pin
Mycroft Holmes7-Aug-14 0:57
professionalMycroft Holmes7-Aug-14 0:57 
GeneralRe: Same EXE vs Different EXE Pin
GuyThiebaut7-Aug-14 2:44
professionalGuyThiebaut7-Aug-14 2:44 
GeneralRe: Same EXE vs Different EXE Pin
Bernhard Hiller7-Aug-14 21:11
Bernhard Hiller7-Aug-14 21:11 
AnswerRe: Same EXE vs Different EXE Pin
Akhil Mittal7-Aug-14 20:05
professionalAkhil Mittal7-Aug-14 20:05 

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.