Here's the code i've been using to show the legal text...:

code:
$Form               = CreateObject("Kixtart.Form")
$Form.Caption = "BLA BLA BLA..."
$Form.ScaleHeight = 500
$Form.ScaleWidth = 550
$Form.FontName = "Arial"
$Form.FontSize = 9
$Form.Center
$Form.moveable = 0
$Form.ResizeAble = 0
$Form.showintaskbar = 1
$Form.TitleBar = 1
$Form.TopMost = 1
$Form.BorderStyle = 1
$Form.MaxButton = 0
$Form.MinButton = 0

Global $lblLegal[3]
$lblLegal[0] = $form.label()
$lblLegal[1] = $form.label()
$lblLegal[2] = $form.label()
$lblLegal[3] = $form.label()

For Each $Label in $lblLegal
$Label.Alignment = 0
$Label.FontName = "arial"
$Label.FontBold = 0
$Label.FontSize = 7
$Label.Left = $fraLegal.Left + 10
Next

$lblLegal[0].Text = "BLA BLA BLA BLA LINE 1..."
$lblLegal[0].Top = $fraLegal.Top + 25
$lblLegal[0].Width = $fraLegal.Width - 20
$lblLegal[1].Text = "BLA BLA BLA BLA LINE 2..."
$lblLegal[1].Top = $lblLegal[0].Height + $lblLegal[0].Top
$lblLegal[1].Width = $fraLegal.Width - 20
$lblLegal[2].FontSize = 8
$lblLegal[2].Text = "BLA BLA BLA BLA LINE 3..."
$lblLegal[2].Top = $lblLegal[1].Height + $lblLegal[1].Top + 5
$lblLegal[2].Width = $fraLegal.Width - 20

I've removed the text as it was in norwegian (didn't think it was of any use).

I'm also looking for a way to disable the close botton in the form. How do i do that without changing/removing the border?

Regards
Borte