Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
bool OutputToTxtFile(char *FullPathFileName)
{
char FormatDLL[MAX_PATH];
char DestinationDLL[MAX_PATH];
struct PEExportOptions PEExportOpt;
struct UXDDiskOptions UXDiskOpt;
UXDiskOpt.structSize = sizeof(UXDDiskOptions);
UXDiskOpt.fileName = FullPathFileName;
PEExportOpt.StructSize = PE_SIZEOF_EXPORT_OPTIONS;
strcpy(PEExportOpt.formatDLLName, "u2ftext.dll");
PEExportOpt.formatType = UXFTextType;
PEExportOpt.formatOptions = NULL;
strcpy(PEExportOpt.destinationDLLName, "u2ddisk.dll");
PEExportOpt.destinationType = UXDDiskType;
PEExportOpt.destinationOptions = &UXDiskOpt;
if (!PEExportTo (PrintJob, &PEExportOpt))
{
ReportError(PrintJob);
::SetCursor( AcursorOrg);
return false;
}
if (!PEStartPrintJob(PrintJob, TRUE))
{
ReportError(PrintJob);
::SetCursor( AcursorOrg);
return false;
}
....