Hello all, i am new to oracle development and i am trying to do the forms exercises in oracle 10g. However, when i got to uploading images in Client_get_file_name, there is an error:
I have a code in an image button.
Here it is:
DECLARE
v_file VARCHAR2(250):= client_get_file_name('C:\','','JPEG Files|*.jpg|',
'Select a product image',open_file,TRUE);
it_image_id ITEM := FIND_ITEM('control.product_image');
BEGIN
client_image.read_image_file(v_file,'',it_image_id);
END;
Then when i press the image button, an error occurs it says:
“FRM-92101: There was a failure in the Forms Server during stratup.”
If ayone could help me..
Thanks in advance!