Kixforms classic does not support .png images. I might be missing something but in the 12+ years I've been using it I only used .bmp images because that is what is supported in KF classic.

Kixforms.NET does support other formats like .png with transparent background like shown below.

 Code:
....
$PictureBoxLogo = $System.PictureBox()
$PictureBoxLogo.BorderStyle = 0
$PictureBoxLogo.Left = 10
$PictureBoxLogo.Top = 10
$PictureBoxLogo.Height = 80
$PictureBoxLogo.Image = $System.Bitmap(@SCRIPTDIR + "\Images\logo.png")
$PictureBoxLogo.Width = 80
$nul = $FormMain.Controls.Add($PictureBoxLogo)
....
_________________________
Mart

- Chuck Norris once sold ebay to ebay on ebay.