tags:

views:

64

answers:

1

using the windows 7 fax service, or any other faxing library in c#,

is it possible to set a watermark or a background picture to the fax document Im generating ?

I have some tab delimited text files (multi-pages reports) i need to fax them with a giving background template.

+1  A: 

I haven't used FAX COM API, however, in any .NET application every control has a OnPrint event which you could override and apply watermarks etc.

James
thanks for the reply, but could you explain how ?
metro
The OnPaint method has PaintEventArgs which will give you access to the Graphics class. Use that to edit the print document it has methods like DrawImage/DrawString.
James