Hi Frens,
I am creating a form and i have taken a png image and appended
that image on form.
but by doing so scrollbars are generated so to remove that i have
used the imageitem class so now the scrollbars are not generated
but the png image is not displayed properly on full screen.only
portion of it is displayed.so can anyone please tell me that
what changes shud i make so that the image will be displayed
on full screen properly.
Here is the code-
Form f1=new Form("test application");
Image img;
try {
img = Image.createImage("/rit.png");
ImageItem ii = new ImageItem(null, img, ImageItem.CENTER, null);
f1.append(ii);

Reply With Quote




