Search found 33 matches

by fphealthcare
Mon Oct 15, 2007 4:44 pm
Forum: Stimulsoft Reports.NET
Topic: Report Viewer Localisztion
Replies: 2
Views: 1004

Report Viewer Localisztion

We want our report can be localized for English, French and German. I want to know how can we make the "Report Viewer Menu" to be localized by those three language.
Thanks.
by fphealthcare
Thu Sep 13, 2007 9:05 pm
Forum: Stimulsoft Reports.NET
Topic: Save Report
Replies: 3
Views: 1306

Save Report

When I click on Save button on the report viewer. In the Filename input box, I input "report.14.09.2007" , and then click on save button. The report is saved without extension name. The email report have got same problems. How can fix it. Thanks.
by fphealthcare
Sun Aug 19, 2007 3:14 pm
Forum: Stimulsoft Reports.NET
Topic: Report Page size for printing
Replies: 6
Views: 4521

Report Page size for printing

Thanks for your reply. For the first question, I checked the Page size from the preview window, it remained in "A4" size. The problem is ,if we use the "Letter" size printer paper to print the report. the report bottom is cut off.
by fphealthcare
Tue Aug 14, 2007 4:45 pm
Forum: Stimulsoft Reports.NET
Topic: Report Page size for printing
Replies: 6
Views: 4521

Report Page size for printing

<t>Sorry for above issue, our US office gave the wrong information to us and there is NOT any warning when they click on print button. The real problam is <br/> <br/> Our report page size is setted to A4. But the printer default page size is "Letter". When they click on the print button and look at ...
by fphealthcare
Mon Aug 13, 2007 9:37 pm
Forum: Stimulsoft Reports.NET
Topic: Report Page size for printing
Replies: 6
Views: 4521

Report Page size for printing

<t>Our report page size is setted to A4. However, when we try to print the report by using our US office printer(which the paper size is setted to "Letter"), the report viewer keep warning to ask A4 papers. We tried to resize our report page size to "Letter", then it works fine. But, we need the rep...
by fphealthcare
Thu Aug 02, 2007 5:13 pm
Forum: Stimulsoft Reports.NET
Topic: Customizing Preview/Viewer
Replies: 22
Views: 14826

Customizing Preview/Viewer

Have you got a solution for the custom email? The default email function works, but we want to override it with the custom email function.

Thanks.
by fphealthcare
Sun Jul 29, 2007 9:28 pm
Forum: Stimulsoft Reports.NET
Topic: Customizing Preview/Viewer
Replies: 22
Views: 14826

Customizing Preview/Viewer

Edward wrote:If I understand in correct way the standard code works correct on the problem machine?

Thank you.
Hi.

Yes the standard code works correctly ont he problem machines on our network.

Thanks
by fphealthcare
Thu Jul 26, 2007 3:51 pm
Forum: Stimulsoft Reports.NET
Topic: Customizing Preview/Viewer
Replies: 22
Views: 14826

Customizing Preview/Viewer

We want to customise the Email button so when a user clicks on it, it automatically exports the report to a PDF file, and attaches it to an email and shows the send email dialog. We are using the following code to override the Email button. using (StiPreviewForm form = new StiPreviewForm(this.report...
by fphealthcare
Sun Jul 22, 2007 10:53 pm
Forum: Stimulsoft Reports.NET
Topic: Prompting to Save Report When Closing Viewer
Replies: 7
Views: 3956

Prompting to Save Report When Closing Viewer

Please use the following code: using (StiPreviewForm myForm = new StiPreviewForm()) { (myForm as Form).FormClosing += new FormClosingEventHandler(); myForm.PreviewControl.Report = report; report.Render(); myForm.ShowDialog(); } public void myForm_FormClosing(object sender, FormClosingEventArgs e) {...
by fphealthcare
Thu Jul 19, 2007 5:41 pm
Forum: Stimulsoft Reports.NET
Topic: Prompting to Save Report When Closing Viewer
Replies: 7
Views: 3956

Prompting to Save Report When Closing Viewer

When the Designer is Loaded for designing a report the static event StiDesigner.LoadingDesigner is fired. But in that case the designer is not visible on screen while the event is occurring. Anyway you can ask the user in that moment is he going to save a report or not after the report will be desi...