Click here to Skip to main content
15,910,411 members
Home / Discussions / C#
   

C#

 
QuestionClipboard copy and a listview Pin
Piet Pelle9-Aug-07 9:31
Piet Pelle9-Aug-07 9:31 
AnswerRe: Clipboard copy and a listview Pin
Judah Gabriel Himango9-Aug-07 9:43
sponsorJudah Gabriel Himango9-Aug-07 9:43 
GeneralRe: Clipboard copy and a listview Pin
Piet Pelle9-Aug-07 9:54
Piet Pelle9-Aug-07 9:54 
GeneralRe: Clipboard copy and a listview Pin
Judah Gabriel Himango9-Aug-07 9:57
sponsorJudah Gabriel Himango9-Aug-07 9:57 
GeneralRe: Clipboard copy and a listview Pin
Piet Pelle9-Aug-07 10:14
Piet Pelle9-Aug-07 10:14 
GeneralRe: Clipboard copy and a listview Pin
Piet Pelle9-Aug-07 10:33
Piet Pelle9-Aug-07 10:33 
GeneralRe: Clipboard copy and a listview Pin
Judah Gabriel Himango9-Aug-07 10:43
sponsorJudah Gabriel Himango9-Aug-07 10:43 
GeneralRe: Clipboard copy and a listview [modified] Pin
Luc Pattyn9-Aug-07 10:53
sitebuilderLuc Pattyn9-Aug-07 10:53 
GeneralRe: Clipboard copy and a listview Pin
Judah Gabriel Himango9-Aug-07 11:52
sponsorJudah Gabriel Himango9-Aug-07 11:52 
GeneralRe: Clipboard copy and a listview Pin
Luc Pattyn9-Aug-07 12:03
sitebuilderLuc Pattyn9-Aug-07 12:03 
GeneralRe: Clipboard copy and a listview Pin
Judah Gabriel Himango9-Aug-07 12:55
sponsorJudah Gabriel Himango9-Aug-07 12:55 
GeneralRe: Clipboard copy and a listview Pin
Luc Pattyn9-Aug-07 13:05
sitebuilderLuc Pattyn9-Aug-07 13:05 
GeneralRe: Clipboard copy and a listview Pin
Piet Pelle9-Aug-07 10:55
Piet Pelle9-Aug-07 10:55 
Questionwhat is a C# reference type Pin
misha_grewal9-Aug-07 7:33
misha_grewal9-Aug-07 7:33 
AnswerRe: what is a C# reference type Pin
led mike9-Aug-07 8:10
led mike9-Aug-07 8:10 
AnswerRe: what is a C# reference type Pin
Guffa9-Aug-07 9:07
Guffa9-Aug-07 9:07 
QuestiontextBox1.Visible=false NOT work! Pin
liubin_aluzi9-Aug-07 7:32
liubin_aluzi9-Aug-07 7:32 
AnswerRe: textBox1.Visible=false NOT work! Pin
PhilDanger9-Aug-07 8:21
PhilDanger9-Aug-07 8:21 
AnswerRe: textBox1.Visible=false NOT work! Pin
Martin#9-Aug-07 20:01
Martin#9-Aug-07 20:01 
QuestionGDI+ Printing using C# - Please help Pin
krishna44569-Aug-07 7:22
professionalkrishna44569-Aug-07 7:22 
AnswerRe: GDI+ Printing using C# - Please help Pin
Judah Gabriel Himango9-Aug-07 9:52
sponsorJudah Gabriel Himango9-Aug-07 9:52 
GeneralRe: GDI+ Printing using C# - Please help Pin
krishna44569-Aug-07 11:01
professionalkrishna44569-Aug-07 11:01 
QuestionCrystalReportViewer and export document Pin
Saamir9-Aug-07 5:43
Saamir9-Aug-07 5:43 
Hi guys,
I have tried numerous ways to export a report to PDF and I keep failing. Please help me, I am trying to export a crystal report from crystal report viewer to .pdf format automatically. Here is my code, it creates the report but it is not a .pdf and doesn't open in acrobat.

O_Report.Load(@"C:\Documents and Settings\sameer.patwa\My Documents\Project Files\POS\POSPymt\Invoice.rpt");
O_Report.Database.Tables[0].ApplyLogOnInfo(LogInfo);
pv.Value=SlsId;
pvs.Add(pv);
O_Report.DataDefinition.ParameterFields["Ad_Parameter1"].ApplyCurrentValues(pvs);
ExportOptions exp= new ExportOptions();
ExcelFormatOptions excelFormatOpts = new ExcelFormatOptions ();
DiskFileDestinationOptions dsk = new DiskFileDestinationOptions();
exp = O_Report.ExportOptions;
exp.ExportDestinationType = ExportDestinationType.DiskFile;
exp.ExportFormatType=ExportFormatType.PortableDocFormat;
dsk.DiskFileName = @"C:\" + SlsId + ".pdf";
exp.DestinationOptions = dsk;
O_Report.Export();



sasa

AnswerRe: CrystalReportViewer and export document Pin
Tom1019-Aug-07 6:09
Tom1019-Aug-07 6:09 
GeneralRe: CrystalReportViewer and export document Pin
Saamir9-Aug-07 6:44
Saamir9-Aug-07 6:44 

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.