Import Picture Through RTC

Created a new field Signature -datatype BLOB in User Setup Table. In this user want to import digital signatures of users.

In User Setup form same I have been done by using the function used to import picture in company Information.

PictureExists := Signature.HASVALUE;

IF Signature.IMPORT(’*.BMP’,TRUE) = ‘’ THEN

EXIT;

IF PictureExists THEN

IF NOT CONFIRM(Text50000,FALSE) THEN

EXIT;

CurrForm.SAVERECORD;

But when i use same function on User Setup Page the it gives error that

“Function ‘IMPORT’ is obsolete for Microsoft Dynamics NAV Server.”

How can I import the picture through RTC??

No need to write any code

simply set SubType property of Signature field to Bitmap

In Page, Signature field - Right click and choose “Select Picture”

Thnx @Mohana…it worked :slight_smile:

welcome