Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to capture picture through webcam vx 1000

claudioaragaoApr 6 2011
Hi.
I'm using Oracle 10g , forms 6i, and I need capture picture through webcam.
If does anyone have one example , will be nice.
I found one exemple but doesn't work.
the code...

declare
numero number;
height number;
width number;
begin

-- COMMIT_FORM;

-- set_block_property('pessoas', default_where, 'id_pessoa ='||:pessoas.id_pessoa);
-- go_block('pessoas');
-- execute_query;

if get_item_property('controle.oc_img',visible) = 'FALSE' then

set_item_property('controle.oc_img',visible,property_true);
go_block('controle');
:parameter.p_camera :=:item('controle.oc_img').interface;
numero := videocap_dvideocap.ole_Start(:parameter.p_camera);

end if;

if get_item_property('pessoas.foto_camera',visible) = 'TRUE' then

set_item_property('pessoas.foto_camera',visible,property_false);

end if;
end;


but I have the error bad bind variable 'item('controle.oc_img').interface'

I´m using videocapdemosetup.exe..


thanks...
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 4 2011
Added on Apr 6 2011
0 comments
178 views