Image Item [message #306920] |
Mon, 17 March 2008 04:57 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
*munnabhai*
Messages: 157 Registered: March 2008 Location: Riyadh
|
Senior Member |
|
|
Hi guyz,
i have one emp_pic item in my table and i want to insert an image obejct in that field.
i wanna to create a push button, when pressed it will open a dialog box after that we can select the image and insert in that emp_pic item.
how can we do this?
Regards
|
|
|
|
|
Re: Image Item [message #307503 is a reply to message #306920] |
Wed, 19 March 2008 00:54 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
thomasscaria
Messages: 21 Registered: July 2007 Location: Kuwait
|
Junior Member |
|
|
in forms 6i use the builtin
get_file_name
example
DECLARE
filename VARCHAR2(256)
BEGIN
filename := GET_FILE_NAME(File_Filter=> 'TIFF Files (*.tif)|*.tif|');
READ_IMAGE_FILE(filename, 'TIFF', 'block5.imagefld);
END;
|
|
|