Hi Roni
It is fairly straight forward to import images into Ax and consume them in forms, reports etc. You can try importing digital signature as an image. For this the field should be set to 'Bitmap' EDT. A quick code sample here -
----------------------------------------------------------------
folder = "C:\\";
fileName = "Signature.jpg"
if (BinData.Loadfile(folder + filename)
{
ttsbegin;
<Table>.<FieldName> = BinData.getData();
<Table>.insert();
ttscommit;
}
----------------------------------------------------------------
Please note that the above snippet is just a sample from Ax 3.0