Ask a Question related to ASP.NET General, Design and Development.
-
Bobby G #1
applet in a webform
I have an applet that I instantiate on a web form using an
applet tag such as: <Applet> stuff in here </Applet>
Assume the name of the applet control is 'VIEWER'.
I instantiate the viewer on the webform in a client
browser window like this
var newWindow = open('webformWithViewer');
This creates the new window with the applet as expected.
I want to call a method contained in the viewer right
after I open it, such as :
var newWindow = open('webformWithViewer');
var oViewer = newWindow.Document.Applets[0];
oViewer.DoSomething();
My problem is that the viewer and/or window are not fully
instantiated yet and therefore DoSomething() fails.
How can I wait for the window and viewer to be completely
opened?
Also, is there a way to hide a window on the client?
Your help would be appreciated.
Bobby G
Bobby G Guest
-
Resize Applet?
I'm using an educational software CD that uses shockwave applets to display images with information on them. The problem is that the size if the... -
cftree with applet
All, I am using CFTREE to build a tree using the java applet option. If I understand correctly, this will require a JRE to be loaded on the... -
Integrating an Applet with PHP
I have located an HTML editor written in Java that works with my clients various computers (e.g. Linux, PC and Macs). What I need to do is learn... -
AnotherClock Applet
J. B. Wood wrote: I like the afterstep clock myself and have noticed that it is missing as well. I have a backup tape from my system when it... -
Including WebForm Image Control in a Webform Table Control
What is the code for including an image control in a Table control of a WebForm ???? regards -
Bobby G #2
Re: applet in a webform
I will look into that, however, I just have to guess at
the timeout value, correct? Sometimes it won't be long
enough?
Thanks for the info,
Bobby G
after a>-----Original Message-----
>use a timeout function with a call back
>something like
>window.setTimeout ("AddTips()",100); addtips gets calledan>"Bobby G" <BGeo@yahoo.com> wrote in message
>news:032101c35079$ebfae860$a101280a@phx.gbl...>>
>>
>> I have an applet that I instantiate on a web form usingfully>> applet tag such as: <Applet> stuff in here </Applet>
>>
>>
>> Assume the name of the applet control is 'VIEWER'.
>>
>> I instantiate the viewer on the webform in a client
>> browser window like this
>>
>> var newWindow = open('webformWithViewer');
>>
>> This creates the new window with the applet as expected.
>>
>> I want to call a method contained in the viewer right
>> after I open it, such as :
>>
>> var newWindow = open('webformWithViewer');
>> var oViewer = newWindow.Document.Applets[0];
>>
>> oViewer.DoSomething();
>>
>>
>> My problem is that the viewer and/or window are notcompletely>> instantiated yet and therefore DoSomething() fails.
>>
>>
>> How can I wait for the window and viewer to be>>> opened?
>>
>> Also, is there a way to hide a window on the client?
>>
>> Your help would be appreciated.
>>
>> Bobby G
>>
>>
>>
>>
>
>.
>Bobby G Guest



Reply With Quote

