Hi
Thanks for reading/trying to help:
I have a VB.Net application written in Windows Forms Application where I use a standard form to launch a WebKit Browser and point the URL to an oracle APEX application. The application (web pages) run well and renders well but the only thing is that it doesn't run any javascript.
I got functions in a vb.class (cScriptManager) its a .vb file like:
is there any way that I can return the value. like IE does wen I use this to call the function:
CODE]
$s("P2_HOST_NAME",window.external.getHostName());
return 0;
[/CODE
where P2_HOST_NAME is : the name of the textbox in page 2
The reason why I do not want to use IE to render the pages is that it has a lot of CSS issues
Can someone help me with the javascript (callback) I think it is called?
Thanks for reading/trying to help:
I have a VB.Net application written in Windows Forms Application where I use a standard form to launch a WebKit Browser and point the URL to an oracle APEX application. The application (web pages) run well and renders well but the only thing is that it doesn't run any javascript.
I got functions in a vb.class (cScriptManager) its a .vb file like:
Code:
Public Function getHostName() As String
Dim ipproperties As IPGlobalProperties = IPGlobalProperties.GetIPGlobalProperties()
Return (ipproperties.HostName & "." & ipproperties.DomainName).ToUpper
End Function
CODE]
$s("P2_HOST_NAME",window.external.getHostName());
return 0;
[/CODE
where P2_HOST_NAME is : the name of the textbox in page 2
The reason why I do not want to use IE to render the pages is that it has a lot of CSS issues
Can someone help me with the javascript (callback) I think it is called?