Photo printing wizard

Post Reply
Natter
Posts: 524
Joined: Mon May 14, 2007 9:49 am

Photo printing wizard

Post by Natter »

How you can call the standard dialog of "Photo printing Wizard" ?
User avatar
RAMESHBABU
Posts: 591
Joined: Fri Oct 21, 2005 5:54 am
Location: Secunderabad (T.S), India

Re: Photo printing wizard

Post by RAMESHBABU »

Hi Natter,

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
 
Image

-Ramesh Babu
Last edited by RAMESHBABU on Fri Mar 18, 2016 1:42 pm, edited 1 time in total.
User avatar
cnavarro
Posts: 5792
Joined: Wed Feb 15, 2012 8:25 pm
Location: España

Re: Photo printing wizard

Post by cnavarro »

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.
dagiayunus
Posts: 69
Joined: Wed Nov 19, 2014 1:04 pm
Contact:

Re: Photo printing wizard

Post by dagiayunus »

#include "fivewin.ch"
function main()
ShellExecute(0,"Print", "c:\fwh\samples\rosa1.jpg",,1)
return nil
Dagia Yunus.
Rajkot, India

FWH 17.04
Natter
Posts: 524
Joined: Mon May 14, 2007 9:49 am

Re: Photo printing wizard

Post by Natter »

Thank you Mr. Rameshbabu ! Perfect
Post Reply