Previous | Next | (P-PDF) Forms & FDF
Topic: Set Color to a Field Value
Conf: (P-PDF) Forms & FDF, Msg: 77573
From: sanjay73
Date: 12/3/2002 01:58 AM
Following is the code in one of my ASP pages which opens a PDF form and set the value as George in the Name Field.
--------------------------------------------------------
Set FdfAcX = Server.CreateObject("FdfApp.FdfApp")
Dim objFdf
Set objFdf = FdfAcX.FDFCreate
objFdf.FDFSetValue "Name","George", Off.
Response.ContentType = "application/vnd.fdf"
Response.BinaryWrite objFdf.FDFSaveToBuf
-------------------------------------------------------
I would like to set a color to this particular field (e.g. Red). What is the piece of code I need to add?
Please reply to sanjaykulk@hotmail.com