Click here to Skip to main content
15,920,606 members
Home / Discussions / C#
   

C#

 
QuestionActive Directory code Pin
Dharmarajan20-Dec-09 19:27
Dharmarajan20-Dec-09 19:27 
Questioncan not open new form problem? Pin
miss YY20-Dec-09 19:21
miss YY20-Dec-09 19:21 
AnswerRe: can not open new form problem? Pin
Saksida Bojan20-Dec-09 19:44
Saksida Bojan20-Dec-09 19:44 
GeneralRe: can not open new form problem? Pin
miss YY20-Dec-09 20:33
miss YY20-Dec-09 20:33 
GeneralRe: can not open new form problem? Pin
Ravi Bhavnani20-Dec-09 20:44
professionalRavi Bhavnani20-Dec-09 20:44 
Questionprinting the slip Pin
Thaer Hamael20-Dec-09 19:19
Thaer Hamael20-Dec-09 19:19 
AnswerRe: printing the slip Pin
Ravi Bhavnani20-Dec-09 20:47
professionalRavi Bhavnani20-Dec-09 20:47 
Questionreport viewer problem Pin
ali- kanju220-Dec-09 18:21
ali- kanju220-Dec-09 18:21 
i m programatically building a datatable and populating that datatable with data from a text file.nw i m assigning that datatable to report viewer but report viewer is not showing any data.here is my code
if (counter != 0)
{
for (int j = 0; j < counter-1; j++)
{
fieldValues = file.ReadLine().Split(new char[] { '\t' });
DataRow dr = dt.NewRow();
for (int i = 0; i < fieldValues.Length; i++)
{
dr[i] = fieldValues[i].ToString();

}
dt.Rows.Add(dr);
}
}
reportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Local;
this.reportViewer1.LocalReport.ReportPath="C:\\Documents and Settings\\amohiuddin\\My Documents\\Visual Studio 2008\\Projects\\sample reporting application\\sample reporting application\\Report1.rdlc";
this.reportViewer1.LocalReport.ReportEmbeddedResource = "sample reporting.Report1.rdlc";
this.reportViewer1.LocalReport.DataSources.Clear();
reportViewer1.DocumentMapCollapsed = true;
this.reportViewer1.DataBindings.Clear();

this.reportViewer1.LocalReport.DataSources.Add(rds);


this.reportViewer1.Show();

this.reportViewer1.RefreshReport();
}
can someone tell me what i m missing?
AnswerRe: report viewer problem Pin
NarendraSinghJTV20-Dec-09 20:18
NarendraSinghJTV20-Dec-09 20:18 
QuestionAdvantages in 32-bit Windows 7 -vs- 64-bit Windows 7 for Azure development Pin
stringtheory_x20-Dec-09 16:48
stringtheory_x20-Dec-09 16:48 
AnswerRe: Advantages in 32-bit Windows 7 -vs- 64-bit Windows 7 for Azure development Pin
Saksida Bojan20-Dec-09 18:30
Saksida Bojan20-Dec-09 18:30 
QuestionClearing of database. Pin
codenoobie20-Dec-09 15:34
codenoobie20-Dec-09 15:34 
AnswerRe: Clearing of database. Pin
Rod Kemp20-Dec-09 16:13
Rod Kemp20-Dec-09 16:13 
GeneralRe: Clearing of database. Pin
codenoobie20-Dec-09 22:18
codenoobie20-Dec-09 22:18 
GeneralRe: Clearing of database. Pin
Rod Kemp21-Dec-09 0:54
Rod Kemp21-Dec-09 0:54 
GeneralRe: Clearing of database. Pin
codenoobie2-Jan-10 15:25
codenoobie2-Jan-10 15:25 
Questiondisplay (render) html in forms Pin
Jayapal Chandran20-Dec-09 7:47
Jayapal Chandran20-Dec-09 7:47 
AnswerRe: display (render) html in forms Pin
o m n i20-Dec-09 8:12
o m n i20-Dec-09 8:12 
QuestionRe: display (render) html in forms Pin
Jayapal Chandran20-Dec-09 8:21
Jayapal Chandran20-Dec-09 8:21 
AnswerRe: display (render) html in forms [modified] Pin
Luc Pattyn20-Dec-09 9:01
sitebuilderLuc Pattyn20-Dec-09 9:01 
GeneralRe: display (render) html in forms Pin
Jayapal Chandran20-Dec-09 9:16
Jayapal Chandran20-Dec-09 9:16 
GeneralRe: display (render) html in forms Pin
Luc Pattyn20-Dec-09 9:38
sitebuilderLuc Pattyn20-Dec-09 9:38 
GeneralRe: display (render) html in forms Pin
Jayapal Chandran20-Dec-09 11:04
Jayapal Chandran20-Dec-09 11:04 
AnswerRe: display (render) html in forms Pin
#realJSOP20-Dec-09 9:55
professional#realJSOP20-Dec-09 9:55 
GeneralRe: display (render) html in forms Pin
Jayapal Chandran20-Dec-09 11:05
Jayapal Chandran20-Dec-09 11: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.