Click here to Skip to main content
15,887,267 members
Home / Discussions / C#
   

C#

 
QuestionUpdate changes made in gridview in DataTable Pin
Yustme11-Dec-08 3:16
Yustme11-Dec-08 3:16 
AnswerRe: Update changes made in gridview in DataTable Pin
Dave Kreskowiak11-Dec-08 4:27
mveDave Kreskowiak11-Dec-08 4:27 
GeneralRe: Update changes made in gridview in DataTable Pin
Yustme11-Dec-08 4:38
Yustme11-Dec-08 4:38 
GeneralRe: Update changes made in gridview in DataTable Pin
Dave Kreskowiak11-Dec-08 6:24
mveDave Kreskowiak11-Dec-08 6:24 
GeneralRe: Update changes made in gridview in DataTable Pin
Yustme11-Dec-08 10:34
Yustme11-Dec-08 10:34 
GeneralRe: Update changes made in gridview in DataTable Pin
Dave Kreskowiak11-Dec-08 12:31
mveDave Kreskowiak11-Dec-08 12:31 
GeneralRe: Update changes made in gridview in DataTable [modified] Pin
Yustme11-Dec-08 20:22
Yustme11-Dec-08 20:22 
QuestionReport viewer Pin
Neo Andreson11-Dec-08 2:52
Neo Andreson11-Dec-08 2:52 
I am facing problem with ReportViwer during excel file creation. excel format is not proper, it's height is constant. Is there any property by using which i can set the width of excel sheet.

My code is
fileSaveDialog.ShowDialog();

if (fileSaveDialog.FileName != string.Empty)
{
Warning[] warnings;
string[] streamids;
string mimeType;
string encoding;
string extension;

byte[] bytes = this.rvAuditTrail.LocalReport.Render(
type, null, out mimeType, out encoding,
out extension,
out streamids, out warnings);

// this.rvAuditTrail.LocalReport.SetParameters(
//ReportParameter
FileStream fs = new FileStream(fileSaveDialog.FileName,
FileMode.Create);
fs.Write(bytes, 0, bytes.Length);
fs.Close();
}

Truth Is The Simplest !!!!

QuestionList items [modified] Pin
nlowdon11-Dec-08 2:45
nlowdon11-Dec-08 2:45 
AnswerRe: List items Pin
Simon P Stevens11-Dec-08 2:55
Simon P Stevens11-Dec-08 2:55 
AnswerRe: List items Pin
Brij11-Dec-08 3:11
mentorBrij11-Dec-08 3:11 
AnswerRe: List items [modified] Pin
#realJSOP11-Dec-08 4:03
mve#realJSOP11-Dec-08 4:03 
AnswerRe: List items Pin
Paul Unsworth11-Dec-08 4:37
Paul Unsworth11-Dec-08 4:37 
GeneralRe: List items Pin
Luc Pattyn11-Dec-08 4:42
sitebuilderLuc Pattyn11-Dec-08 4:42 
GeneralRe: List items Pin
#realJSOP11-Dec-08 4:57
mve#realJSOP11-Dec-08 4:57 
QuestionDirectory.GetFiles - how do I get the file names only and not the complete path? Pin
Member 340288611-Dec-08 1:26
Member 340288611-Dec-08 1:26 
AnswerRe: Directory.GetFiles - how do I get the file names only and not the complete path? Pin
TJS4u11-Dec-08 1:31
TJS4u11-Dec-08 1:31 
GeneralRe: Directory.GetFiles - how do I get the file names only and not the complete path? Pin
Member 340288611-Dec-08 1:41
Member 340288611-Dec-08 1:41 
AnswerRe: Directory.GetFiles - how do I get the file names only and not the complete path? PinPopular
Giorgi Dalakishvili11-Dec-08 1:31
mentorGiorgi Dalakishvili11-Dec-08 1:31 
AnswerRe: Directory.GetFiles - how do I get the file names only and not the complete path? Pin
Paul Unsworth11-Dec-08 4:43
Paul Unsworth11-Dec-08 4:43 
GeneralRe: Directory.GetFiles - how do I get the file names only and not the complete path? Pin
Member 340288611-Dec-08 5:06
Member 340288611-Dec-08 5:06 
GeneralRe: Directory.GetFiles - how do I get the file names only and not the complete path? Pin
Paul Unsworth11-Dec-08 5:16
Paul Unsworth11-Dec-08 5:16 
QuestionClient connecting to web service Pin
Chazzysb11-Dec-08 1:20
Chazzysb11-Dec-08 1:20 
AnswerRe: Client connecting to web service Pin
blackjack215011-Dec-08 1:40
blackjack215011-Dec-08 1:40 
GeneralRe: Client connecting to web service Pin
Chazzysb11-Dec-08 2:07
Chazzysb11-Dec-08 2:07 

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.