Hi,
I have developed a toolbar and placed in a vertical canvas. I use a global variable in order to register on which block the user desires an enter_query and then execute_query....
While enter_query works ...... the execute_query does not ... it does nothing....without any error....
But using the F11 -> CTRL + F11 the operations work perfectly.....
What may be the cause.....???
On button <enter query>
begin
go_block(:global.curr_block);
enter_query;
end;
On button <execute_query>
begin
go_block(:global.curr_block);
execute_query;
end;
I use Dev10g...
Thanks.. a lot
Simon