|
|
|
|
|
|
|
|
|
Re: attaching tools built in V.Basic ? [message #304830 is a reply to message #304396] |
Thu, 06 March 2008 18:30   |
amdabd
Messages: 91 Registered: November 2007 Location: My Computer
|
Member |
|
|
hi,
Thanks everybody,
I'm using forms 10g.
...
Host( 'cmd/c start "" "VB.EXE"');
...
actually I need to embed the V.Basic FORM or TOOL on Oracle form
to be as same as PUSHBUTTON or other oracle developer tools
NOT to run the V.B FORM or TOOL in separate process.
thanks again
|
|
|
|
Re: attaching tools built in V.Basic ? [message #305043 is a reply to message #304396] |
Fri, 07 March 2008 13:36   |
amdabd
Messages: 91 Registered: November 2007 Location: My Computer
|
Member |
|
|
hi,
I'm trying to get the size of exported dump file during exporting process
previous subscription
-- how can determine what will be the size of the exported data before the exporting process is done ?,
-- and is it possible to associate a synchronized progress bar to the exporting process?
I didn't find my answer in Oracle, I try to get substitutes.
|
|
|
|
|
Re: attaching tools built in V.Basic ? [message #307103 is a reply to message #304396] |
Mon, 17 March 2008 18:06   |
amdabd
Messages: 91 Registered: November 2007 Location: My Computer
|
Member |
|
|
dear David
hi,
Thanks for your concern,however, the two topics are belonged to me
My main idea is to make a progress bar on a FORM synchronized with the exporting process ;
I can't find my way within ORACLE so, I'm try using a mix of different tools .
It still useless
& I still trying
|
|
|
|
|
Re: is it possible to associate a synchronized progress bar to the exporting process? & attachin [message #307591 is a reply to message #299406] |
Wed, 19 March 2008 04:06   |
amdabd
Messages: 91 Registered: November 2007 Location: My Computer
|
Member |
|
|
dear david
hi,
I'm using (HOST)command within a PushBottun to export
declare
alrt number;
v_directory varchar2(200) := 'c:\backup';
path varchar2(100):='back_up'||to_char(sysdate,'dd-mm-yyyy-hh-mi-ss');
v_exp varchar2(200) := 'exp scott/tiger@orcl file = '||v_directory||'\'||path||'.dmp owner=scott grants=yes';
begin
host(v_exp);
if form_success then
set_alert_property('msg',alert_message_text,'Form success');
alrt:=show_alert('msg');
else
message('there are errors in the process');
end if;
end;
HOST command do not return values, only Boolean - the event is done or not-
host=expdp hr/hr ESTIMATE_ONLY=y NOLOGFILE=y
then how to get the returned value from HOST()
thanks
|
|
|
|
|
|