Web Browser Help [message #86727] |
Tue, 26 October 2004 19:40  |
Kokiri
Messages: 2 Registered: October 2004
|
Junior Member |
|
|
I am designing a form in which has a button for help. I was wondering how do i get a trigger to execute a html file (the help file) to open in a new browser window?
I really need some help on this one.
Thankyou.
|
|
|
Re: Web Browser Help [message #86728 is a reply to message #86727] |
Tue, 26 October 2004 20:06   |
ashish
Messages: 107 Registered: December 2000
|
Senior Member |
|
|
if u want trig it's when-button-press
if u want to open new browser window then use dde.App_Begin
try this code in when-button-press trig.........
DECLARE
AppID PLS_INTEGER;
BEGIN
-----to open application in Maximized
message('DDE.App_Begining');
message('DDE.App_Begining');
AppID := DDE.App_Begin('C:Program FilesInternet ExplorerIEXPLORE.EXE http://www.orafaq.com/forum/t/32560/0/',DDE.APP_MODE_Maximized);
exception
when others then
message(''||sqlerrm);
message(''||sqlerrm);
END;
[Updated on: Fri, 18 February 2005 23:32] Report message to a moderator
|
|
|
|