-
resizing an applet
This one may not be that hard.
I created an applet to interact with a user. The user will be able to input data and submit the data to a database.
My question is when i run the applet the applet pops up with the form on but the whole form is not visible.
How do I resize the applet????
in the code or do i have to change it in a a file menu???
thanks in advance annie
:)
-
in jBuilder
in the menu bar
run || optimize project || click the run tab || adjust height and width fields
:) just in case anyone else needs this
-
at runtime:
void Applet.resize(int width, int height)
or
void Applet.resize(java.awt.Dimension dim)