Thanks Greg for your help so far! Very appreciated.
You said that I can display a picture within an expression box by changing the source code. That's what I did. But it doesn't work. I think I'm missing something here since even if I put a regular Rich Text box, I can't display a picture from it. It's all binary stuff.
Is there something else I should do ?
thanks again!
"Greg Collins [InfoPath MVP]" wrote:
[Quoted Text] > An expression box was designed to only show text. You can get an expression box to display rich content by manually editing the .xsl file and changing the line from: > > <xsl:value-of select="my:field1"/> > > to: > > <xsl:copy-of select="my:field1/node()"/> > > But this structure is not directly supported by InfoPath 2003 (not sure about InfoPath 2007) and you will likely lose your change during a subsequent save of the template from the designer. > > You should be using a Picture Control to accomplish your task. And even then, long data types (i.e. images, etc) are not directly supported by InfoPath 2003 either--so you might need a Web service for this. > > Hope this was helpful. > > -- > Greg Collins [Microsoft MVP] > Visit Brain Trove ( http://www.BrainTrove.com ) > Visit InfoPathDev ( http://www.InfoPathDev.com ) > > >
|