rinkuu said:
Window w = new Window(Window owner);
is it possible to create a window object by using this statement. iam
a new bee please help me . if any body can tell me why i cannot create
a widow object.
Would I be correct in assuming you've confused JavaScript with Java and
you are expecting some bit of documentation about java.awt.Window you've
read to work in client-side JavaScript to create a new window?
Because if you were actually using Java, you would need, at a minimum, a
Class definition of your own, an import java.awt.Window; and the correct
syntax (which would be Window w = new Window(owner) - assuming owner is a
valid Window object reference itself).
Please show all the code you are attempting to use this in. Explain what
you expect to happen. Explain what actually happens.
Then perhaps someone can help you.