Click here to Skip to main content
15,893,161 members
Home / Discussions / C#
   

C#

 
AnswerRe: Problem in Multiple Insertion with TransactionScope. Pin
dan!sh 22-Feb-09 20:04
professional dan!sh 22-Feb-09 20:04 
GeneralRe: Problem in Multiple Insertion with TransactionScope. Pin
hdv21224-Feb-09 0:06
hdv21224-Feb-09 0:06 
QuestionAbout Restricted method Pin
rajanbabu_03322-Feb-09 18:49
rajanbabu_03322-Feb-09 18:49 
AnswerRe: About Restricted method Pin
ABitSmart22-Feb-09 20:30
ABitSmart22-Feb-09 20:30 
QuestionAbout GetMethods In Reflection Pin
rajanbabu_03322-Feb-09 18:48
rajanbabu_03322-Feb-09 18:48 
AnswerRe: About GetMethods In Reflection Pin
Calin Tatar22-Feb-09 23:37
Calin Tatar22-Feb-09 23:37 
GeneralRe: About GetMethods In Reflection Pin
rajanbabu_03323-Feb-09 19:44
rajanbabu_03323-Feb-09 19:44 
QuestionMicrosoft Reportviewer question Pin
Rafone22-Feb-09 18:35
Rafone22-Feb-09 18:35 
Can somebody tell me why this code is not working. It keeps saying
"A datasource instance has not has not been supplied for the data source.

Also I have scoured the web for some good documentation on how to set these up on the fly but I have not found any great info. Can somebody point me in the right direction?


private void toolStripButton1_Click_1(object sender, EventArgs e)
{

this.Cursor = Cursors.WaitCursor;

try
{
// Set Processing Mode

reportViewer1.ProcessingMode = ProcessingMode.Local;

// Set RDL file

reportViewer1.LocalReport.ReportPath = (Application.StartupPath + "\\reports\\trdReport.rdlc");

// Supply a DataTable corresponding to each report data source

reportViewer1.LocalReport.DataSources.Add(
new ReportDataSource("getTrends", LoadData()));

// Add the reportviewer to the form

reportViewer1.Dock = DockStyle.Fill;

// Process and render the report

reportViewer1.RefreshReport();
}
catch (Exception ex)
{
StreamWriter writer = new StreamWriter(logFile, true, System.Text.Encoding.ASCII);
writer.WriteLine(System.DateTime.Now);
writer.WriteLine("[generate report]");
writer.WriteLine("[generate report]");
writer.WriteLine(ex);
writer.WriteLine("\r");
writer.Close();
MessageBox.Show(ex.ToString());
//this.Close();
//System.Environment.Exit(0);
}


this.Cursor = Cursors.Default;

}


private DataTable LoadData()
{
// Load data from XML file
DataSet ds = new DataSet();
string myFilePath = (Application.StartupPath + "\\bin\\" + "trd.xml");
ds.ReadXml(myFilePath);
return ds.Tables[0];

}

tia
rafone

Statistics are like bikini's...
What they reveal is astonishing ...
But what they hide is vital ...
AnswerRe: Microsoft Reportviewer question Pin
Rafone23-Feb-09 1:25
Rafone23-Feb-09 1:25 
Questionconnecting remote mysql database using c#.net Pin
dilip51422-Feb-09 18:08
dilip51422-Feb-09 18:08 
AnswerRe: connecting remote mysql database using c#.net Pin
Christian Graus22-Feb-09 18:31
protectorChristian Graus22-Feb-09 18:31 
AnswerRe: connecting remote mysql database using c#.net Pin
RobScripta23-Feb-09 7:37
professionalRobScripta23-Feb-09 7:37 
QuestionProgress Bar And Data Process Pin
BlitzPackage22-Feb-09 17:28
BlitzPackage22-Feb-09 17:28 
AnswerRe: Progress Bar And Data Process Pin
Jon Rista22-Feb-09 18:14
Jon Rista22-Feb-09 18:14 
GeneralRe: Progress Bar And Data Process Pin
BlitzPackage22-Feb-09 19:21
BlitzPackage22-Feb-09 19:21 
QuestionWorking with multiple threads. Pin
CodingLover22-Feb-09 16:54
CodingLover22-Feb-09 16:54 
AnswerRe: Working with multiple threads. Pin
ABitSmart22-Feb-09 17:06
ABitSmart22-Feb-09 17:06 
GeneralRe: Working with multiple threads. Pin
CodingLover22-Feb-09 21:06
CodingLover22-Feb-09 21:06 
QuestionHow to create a new keyword Pin
damichab22-Feb-09 14:52
damichab22-Feb-09 14:52 
AnswerRe: How to create a new keyword Pin
PIEBALDconsult22-Feb-09 15:52
mvePIEBALDconsult22-Feb-09 15:52 
GeneralRe: How to create a new keyword Pin
damichab22-Feb-09 16:43
damichab22-Feb-09 16:43 
GeneralRe: How to create a new keyword Pin
Jon Rista22-Feb-09 18:10
Jon Rista22-Feb-09 18:10 
AnswerRe: How to create a new keyword Pin
damichab23-Feb-09 11:09
damichab23-Feb-09 11:09 
Questioncustomize deserialization sample in C#? Pin
George_George22-Feb-09 14:48
George_George22-Feb-09 14:48 
AnswerRe: customize deserialization sample in C#? Pin
Zap-Man22-Feb-09 15:05
Zap-Man22-Feb-09 15: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.