Hello,
How to add file to collection when user tries to attach file?
I have custom attachment collection when user press on camera control it adds that image to collection :
Set(varImageName, GUID());
Collect(
colCameraImages,
{
DisplayName: varImageName & ".jpg",
Id: varImageName & ".jpg",
Value: Camera1.Photo
}
);
However in some cases users want to use attachment control just to be able to add high quality images.
How can I accomplish that?