XtraReport1.DataSource of Devexpress and assign the filed into XtraReport ??


Author
Message
Dong Trien Lam
Dong Trien Lam
StrataFrame Novice (105 reputation)StrataFrame Novice (105 reputation)StrataFrame Novice (105 reputation)StrataFrame Novice (105 reputation)StrataFrame Novice (105 reputation)StrataFrame Novice (105 reputation)StrataFrame Novice (105 reputation)StrataFrame Novice (105 reputation)StrataFrame Novice (105 reputation)
Group: Anonymous / Guest
Posts: 57, Visits: 251
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

    
    // 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();


GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...





Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search