Can someone tell me how to use radio buttons: i.e. I have two radio buttons and when one is highlighted and a triggered button is pressed it executes one script but if the other radio button is choosen and the triggered button presssed a different script is executed.
For example: in a WHEN-RADIO-CHANGED trigger I have
begin
if :R_1 = true
then
select sysdate from dual;
else if :R_2 = true
then
select (sysdate +1) from dual
else dbms.out_put.put_line('Error');
end;
Note: R_1 and R_2 are the names of the radio buttons.
Thanks
David
For example: in a WHEN-RADIO-CHANGED trigger I have
begin
if :R_1 = true
then
select sysdate from dual;
else if :R_2 = true
then
select (sysdate +1) from dual
else dbms.out_put.put_line('Error');
end;
Note: R_1 and R_2 are the names of the radio buttons.
Thanks
David