image (O4W)
At 30 JUL 2012 09:18:37PM jackie jones wrote:
I'm having a hard time showing images. When the user selects a product the screen should show images for that product. I can't get it to show the images, they end up at the bottom of the screen. Is there a special command for update of images?
O4WSectionStart("prodpictures")
O4WImage("Drawing4", imagePath:DRAWING4,
,
,'',DRAWING4)O4WSectionEnd("prodpictures"
Thanks
At 31 JUL 2012 08:24AM Dave Harmacek wrote:
I suspect you are in Response mode, and you are missing the second argument in O4WSectionStart:
Works for me:
O4WSectionStart( 'sectionScheduled', O4WResponseOptions())
Otherwise, it will construct a new section outside of the other sections which you are seeing.
Dave Harmacek
Harmacek Database Systems
At 31 JUL 2012 05:00PM jackie jones wrote:
Yes you are correct again. I keep making the same mistake. I thought maybe there was something I was missing with the Image command. You are correct, it works! Thanks! Yay!