L_DlgFileConversion

#include "l_bitmap.h"

L_INT EXT_FUNCTION L_DlgFileConversion(hWndOwner, pDlgParams)

HWND hWndOwner;

/* owner of dialog */

LPFILECONVERSIONDLGPARAMS pDlgParams;

/* pointer to a structure */

Displays the File Conversion dialog box, and gets the options for converting files.

Parameter

Description

hWndOwner

Handle of the window, which owns the dialog.

pDlgParams

Pointer to a FILECONVERSIONDLGPARAMS structure to be updated with the values entered by the user through the dialog. Set members of this structure, before calling this function, to set the dialog’s initial values.

Comments

The File Conversion dialog can be seen below:

image\FileConversion.gif

Returns

SUCCESS_DLG_CLOSE

The "Close" button was pressed, and the dialog exited successfully.

SUCCESS_DLG_CANCEL

The "Cancel" button was pressed, and the dialog exited successfully.

< 1

An error occurred. Refer to Return Codes.

Required DLLs and Libraries

LTDLGFILE
LTDLGKRN
LTDLGUTL
LTDLGCTRL
LTDLGCOM
LTFIL
LTDIS
LTIMG
LTKRN

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application

See Also

Functions:

L_DlgInit, L_SaveBitmap, L_SaveFile, L_LoadFile, L_LoadBitmap

Topics:

Dialogs: Converting Files

 

Using Imaging Common Dialog

Example

L_VOID ShowDialog ( HWND hWnd )
{
   FILECONVERSIONDLGPARAMS DlgParams ;

   memset ( &DlgParams, 0, sizeof ( FILECONVERSIONDLGPARAMS ) ) ;
   
   DlgParams.uStructSize           = sizeof ( FILECONVERSIONDLGPARAMS ) ;
   DlgParams.uOverwrite            = DLG_FILECONVERSION_OVERWRITE_SKIP ;
   DlgParams.pFileFormats          = NULL ;
   DlgParams.nFileFormatsCount     = 0 ;
   DlgParams.bUseLogReport         = TRUE ;
   DlgParams.bRemoveSrcFile        = FALSE ;
   DlgParams.bShowFullPath         = TRUE ;
   DlgParams.bUseOriginalFolder    = TRUE ;
   DlgParams.pszSrcFileList         = NULL ;
   DlgParams.uDlgFlags             = DLG_FILECONVERSION_SHOW_PREVIEW                     |
                                     DLG_FILECONVERSION_SHOW_LOADOPTIONS                 |
                                     DLG_FILECONVERSION_SHOW_FILEINFO                    |
                                     DLG_FILECONVERSION_SHOW_PREVIEW_PAGES               |
                                     DLG_FILECONVERSION_SHOW_RESIZE                      |
                                     DLG_FILECONVERSION_SHOW_ROTATE                      |
                                     DLG_FILECONVERSION_SHOW_NAMINGTEMPLATE              |
                                     DLG_FILECONVERSION_SHOW_OVERWRITE                   |
                                     DLG_FILECONVERSION_SHOW_OVERWRITE_ALL               |
                                     DLG_FILECONVERSION_SHOW_ADD                         |
                                     DLG_FILECONVERSION_SHOW_ADDFOLDER                   |
                                     DLG_FILECONVERSION_SHOW_REMOVE                      |
                                     DLG_FILECONVERSION_SHOW_SELECTALL                   |
                                     DLG_FILECONVERSION_SHOW_DELETEORIGINAL ;

   L_DlgFileConversion ( hWnd, &DlgParams ) ;   
}