Click here to Skip to main content
15,909,437 members
Home / Discussions / C#
   

C#

 
GeneralRe: Resource Extraction Pin
Opa Knack15-Sep-07 1:09
Opa Knack15-Sep-07 1:09 
GeneralRe: Resource Extraction Pin
Giorgi Dalakishvili15-Sep-07 2:13
mentorGiorgi Dalakishvili15-Sep-07 2:13 
QuestionFormatting Decimals in a DataGridView Pin
jasper01814-Sep-07 3:41
jasper01814-Sep-07 3:41 
AnswerRe: Formatting Decimals in a DataGridView Pin
Giorgi Dalakishvili14-Sep-07 4:12
mentorGiorgi Dalakishvili14-Sep-07 4:12 
GeneralRe: Formatting Decimals in a DataGridView Pin
jasper01814-Sep-07 4:23
jasper01814-Sep-07 4:23 
GeneralRe: Formatting Decimals in a DataGridView Pin
Giorgi Dalakishvili14-Sep-07 5:35
mentorGiorgi Dalakishvili14-Sep-07 5:35 
QuestionMap Control Pin
FB3914-Sep-07 2:48
FB3914-Sep-07 2:48 
AnswerRe: Map Control Pin
Christian Graus14-Sep-07 3:31
protectorChristian Graus14-Sep-07 3:31 
GeneralRe: Map Control Pin
FB3914-Sep-07 10:31
FB3914-Sep-07 10:31 
QuestionAddress from HouseNumber and PostCode Pin
Gareth H14-Sep-07 2:29
Gareth H14-Sep-07 2:29 
AnswerRe: Address from HouseNumber and PostCode Pin
Craster14-Sep-07 2:44
Craster14-Sep-07 2:44 
GeneralRe: Address from HouseNumber and PostCode Pin
Gareth H14-Sep-07 2:52
Gareth H14-Sep-07 2:52 
GeneralRe: Address from HouseNumber and PostCode Pin
Pete O'Hanlon14-Sep-07 3:34
mvePete O'Hanlon14-Sep-07 3:34 
GeneralRe: Address from HouseNumber and PostCode Pin
Gareth H14-Sep-07 3:54
Gareth H14-Sep-07 3:54 
QuestionAutocorrect functionality in windows forms Pin
chakran14-Sep-07 2:12
chakran14-Sep-07 2:12 
Questionconsole app wrapper help [modified] Pin
mbender14-Sep-07 2:12
mbender14-Sep-07 2:12 
AnswerRe: console app wrapper help Pin
led mike14-Sep-07 5:06
led mike14-Sep-07 5:06 
GeneralRe: console app wrapper help Pin
mbender14-Sep-07 5:11
mbender14-Sep-07 5:11 
Questioncompilation error Pin
deep714-Sep-07 1:54
deep714-Sep-07 1:54 
QuestionHow to: Report generation through Report Viewer control Pin
Spunky Coder14-Sep-07 1:51
Spunky Coder14-Sep-07 1:51 
Hi i have the following code in my form.cs file...

DataTable dt = new DataTable("SampleTable");
DataSet ds = new DataSet("Dataset");


dt.Columns.Add("EmpNo", System.Type.GetType("System.Int32"));
dt.Columns.Add("EmpName", System.Type.GetType("System.String"));

DataRow drow;
drow = dt.NewRow();

drow["EmpNo"] = 1001;
drow["EmpName"] = "Ranjith";
dt.Rows.Add(drow);

drow = dt.NewRow();

drow["EmpNo"] = 1003;
drow["EmpName"] = "Surrendra";
dt.Rows.Add(drow);

ds.Tables.Add(dt);

Now i want this data table (either the dataset ) to be displayed in a report. I've .rdlc in my project and the report viewer control.

Also I've tried by setting the reportViewer into local mode and adding the data table as datasource, but still the report is seen blank.( I haven't done anything on the .rdlc file after creating it)...

Can anyone help me out in this?



Koushik

AnswerRe: How to: Report generation through Report Viewer control Pin
DLM@TD14-Sep-07 12:29
DLM@TD14-Sep-07 12:29 
QuestionDatabinding Issue Pin
RichardContact-114-Sep-07 1:34
RichardContact-114-Sep-07 1:34 
AnswerRe: Databinding Issue Pin
Pete O'Hanlon14-Sep-07 1:45
mvePete O'Hanlon14-Sep-07 1:45 
QuestionWPF UserControl Warning Pin
Michael O.14-Sep-07 1:18
Michael O.14-Sep-07 1:18 
QuestionDockPanel Pin
Mamphekgo Bahula14-Sep-07 1:06
Mamphekgo Bahula14-Sep-07 1:06 

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.