Click here to Skip to main content
15,886,110 members

Comments by Member 7838027 (Top 19 by date)

Member 7838027 1-Jun-11 20:39pm View    
hi! when, i added a new person, the combobox is not updated. how can i update the combobox? i am sure that the new person that i added is successfully added to the list because it is displayedin the gridview.
Member 7838027 1-Jun-11 10:34am View    
thanks :)
Member 7838027 30-May-11 22:40pm View    
i want to save the file without savefile dialog... in order to do this, i have to convert the it to an array of byte? do you know of other ways to save a file without savefile dialog?
Member 7838027 20-May-11 1:53am View    
there's no error messages shown but the file is not created.
Member 7838027 19-May-11 23:10pm View    
thanks. here's now my code:
RadDocument document = CreateDocument(rgvReportData);
document.LayoutMode = DocumentLayoutMode.Paged;
document.Measure(RadDocument.MAX_DOCUMENT_SIZE);
document.Arrange(new RectangleF(PointF.Empty, document.DesiredSize));
document.SectionDefaultPageMargin = new Telerik.Windows.Documents.Layout.Padding(2, 2, 2, 2);
document.SectionDefaultPageOrientation = PageOrientation.Landscape;
HtmlFormatProvider provider = new HtmlFormatProvider();
using (Stream output = File.OpenWrite(@"C:\myreport.html"))
{
provider.Export(document, output);
}


nut it didn't work.