I am making a membership database. On the members form I need to be able to have the new member upload a picture of them selves for ID. Is this possable? If so How?
Subject: pictures in a web form
search for file upload control in designer help
Subject: pictures in a web form
1.Use upload control to attach the picture.2.To show it, put pass-thru html IMG SRC=(computed text), where the formula is smth like:
“/” + @WebDbName + “/” + @Text(@DocumentUniqueID)+“/$file/”+@Subset(@AttachmentNames;-1)
This grabs the last attachment - useful if users replace pictures with new ones.
Also put CFD field $V2AttachmentOptions = “0” to suppress showing attachments at the bottom of the form.
HTH,
Simeon
Subject: RE: pictures in a web form
can you be a little more clear on your instructions please?