How you can call the standard dialog of "Photo printing Wizard" ?
How you can call the standard dialog of "Photo printing Wizard" ?
#include "fivewin.ch"
FUNCTION Main()
LOCAL oCommDlg, oFiles
oCommDlg := FWGetOleObject( "WIA.CommonDialog" )
oFiles  := FWGetOleObject( "WIA.Vector")
oFiles:Add("c:\fwh\bitmaps\007.bmp")
oFiles:Add("c:\fwh\bitmaps\dbglogo.bmp")
oCommDlg:ShowPhotoPrintingWizard(oFiles)
RETURN nil
Perfect, thanks
function main()
ShellExecute(0,"Print", "c:\fwh\samples\rosa1.jpg",,1)
return nil
Thank you Mr. Rameshbabu ! Perfect