|
|
|
|
|
- Overview
- Principle for printing in an iPhone/iPad application or in Universal Windows App mode
- Limitations
Printing a report (iPhone/iPad, Android or Universal Windows App)
When creating a report, the test of this report can be run from the report editor. You also have the ability to include this report in your applications. The user will have the ability to print the report from a button, a menu option, ... for example. In the iPhone or iPad applications or in the applications in Universal Windows App mode, the report can be printed in PDF format only. Then, this PDF file can be printed, viewed, emailed, ... Principle for printing in an iPhone/iPad application or in Universal Windows App mode The principle for printing a report is straightforward: a PDF file is created when printing the report. Then, all you have to do is open this PDF file in the appropriate software and print it on the printer configured for the computer used. Regardless of the type of report to print, the principle for printing a report is as follows: - Specify the print mode of report (generation of a PDF file) with iDestination.
- Start the print job in PDF format with iPrintReport.
- Then, you will have the ability to:
- display the generated file on the user computer (ShellExecute).
- print the generated PDF file via the iOS print system (iPrintPDF).
- ...
Caution: Check the following points: - You must have the rights to write into the directory where the document will be generated.
If you generate a report in PDF format, this file can be saved in the data directory (path returned by fDataDir). - Use a specific name for each generated document. Otherwise, several simultaneous prints would overwrite the prints already performed.
This principle must be adapted according to the data source used in each report. Example: // Print the order form FileName = fDataDir() + [fSep()] + StringBuild("ORF_%1.PDF", OrderNumber) iDestination(iGenericPDF, FileName) iPrintReport(RPT_OrderForm, OrderNumber, OrderNumber) Â // Check the file existence IF fFileExist(FileName) = False THEN Error("The PDF file was not generated") RETURN END Â // Confirmation to display the PDF IF YesNo(Yes, "Display the generated order form (PDF format)?") = Yes THEN // Display the generated order form ShellExecute(FileName) ELSE iPrintPDF(FileName) END The following paragraphs show how to: The following limitations apply to reports created with the report editor in applications for iPhone/iPad or Universal Windows Apps: - The RTF is not supported: no control in RTF format, ...
- Only the Chart controls created from version 17 are available.
- The following controls are not available:
- Edit controls.
- HTML controls.
- Spreadsheet controls.
- Signature controls.
- Organizer and Scheduler controls.
- Gantt Chart controls.
- Pivot Table controls.
Related Examples:
|
Cross-platform examples (WINDEV Mobile): WM CRM
[ + ] WM CRM is a multi-platform project for Android and iOS. It explains how to develop a CRM application intended to the Android and iPad tablets.
|
|
Cross-platform examples (WINDEV Mobile): WM Expense Account
[ + ] This example allows you to manage your fees. Let's see the main features of this application: - The input of invoices - Management of foreign currencies - Inclusion of photo document for the invoices - Ability to email the expense account - Ability to track the expense accounts - ...
|
|
Cross-platform examples (WINDEV Mobile): WM Managing Contacts
[ + ] This example presents the management of contacts for Android et iOS. It is used o: - list the contacts found on the phone - call the contacts - send SMSs to the contacts - ...
|
|
Cross-platform examples (WINDEV Mobile): WM Managing Orders
[ + ] The WM Managing Orders example is a simplified management of orders and invoices. This example is used to: - create/modify/delete a product, - create/modify/delete a customer, - contact a customer by email, - see the history of the actions performed for a customer - place an order, print an order form, - invoice an order, print an invoice.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|