Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the Dimensions of the Applet Viewer in NetBeans 6.7

I was waiting for the stable release of Netbeans 6.7 before starting to use it for my Java Programming.

I would like to how to change the Dimensions of the Applet Viewer in NetBeans 6.7.

When ever i run a java file by pressing SHIFT + F6, it opens an Applet but the dimensions are too small, i think they are around 300 X 300.

How to change those dimensions ?

like image 570
Ibn Saeed Avatar asked Dec 17 '22 07:12

Ibn Saeed


1 Answers

Or use the Resize() option to change the applet size when you run. Put the resize(width,heaght) in init() of your applet.

like image 185
Aniruddha Avatar answered May 15 '23 18:05

Aniruddha