Photo printing wizard
Photo printing wizard
How you can call the standard dialog of "Photo printing Wizard" ?
- RAMESHBABU
- Posts: 591
- Joined: Fri Oct 21, 2005 5:54 am
- Location: Secunderabad (T.S), India
Re: Photo printing wizard
Hi Natter,
This is what you may be lookingfor:
-Ramesh Babu
This is what you may be lookingfor:
Code: Select all
#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
-Ramesh Babu
Last edited by RAMESHBABU on Fri Mar 18, 2016 1:42 pm, edited 1 time in total.
Re: Photo printing wizard
Perfect, thanks
C. Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
Si alguien te dice que algo no se puede hacer, recuerda que esta hablando de sus limitaciones, no de las tuyas.
-
- Posts: 69
- Joined: Wed Nov 19, 2014 1:04 pm
- Contact:
Re: Photo printing wizard
#include "fivewin.ch"
function main()
ShellExecute(0,"Print", "c:\fwh\samples\rosa1.jpg",,1)
return nil
function main()
ShellExecute(0,"Print", "c:\fwh\samples\rosa1.jpg",,1)
return nil
Dagia Yunus.
Rajkot, India
FWH 17.04
Rajkot, India
FWH 17.04
Re: Photo printing wizard
Thank you Mr. Rameshbabu ! Perfect