Opening folder on local PC
Hi
We have a form which opens a folder from the user's local PC. So in the form we have the following code:
IF get_application_property(user_interface) = 'WEB' THEN
web.show_document(<location>l, '_blank');
ELSE
host( 'cmd /C start /W '||<location>);
END IF;
Note that we use 6i for all development. We do not develop at all in 9iAS or 10gAS. We have some clients using the forms 6i client/server method, and others who use the 10gAS applciation server. So to deploy on the application server we take the 6i form, convert to 10gAS form, and recompile.
We have a form which opens a folder from the user's local PC. So in the form we have the following code:
IF get_application_property(user_interface) = 'WEB' THEN
web.show_document(<location>l, '_blank');
ELSE
host( 'cmd /C start /W '||<location>);
END IF;
Note that we use 6i for all development. We do not develop at all in 9iAS or 10gAS. We have some clients using the forms 6i client/server method, and others who use the 10gAS applciation server. So to deploy on the application server we take the 6i form, convert to 10gAS form, and recompile.
0