I am not sure if I can post this correctly or not.. here is a sample of the code.

code:
$lblleft = 10

$Form = CreateObject("Kixtart.Form")

$fradetails = $FORM.Frame("Query Details")
$fradetails.HEIGHT = 265
$fradetails.Left = $fraLeft
$fradetails.TOP = 95
$fradetails.WIDTH = 355

$lblCurProcess = $fradetails.Label("Calling RAND to calculate routes...")
$lblCurProcess.HEIGHT = 19
$lblCurProcess.WIDTH = 300
$lblCurProcess.Left = $lblleft
$lblCurProcess.TOP = 170

What I am trying to do is within the function that is called from this form (not shown) I want to use $lblCurProcess as a status indicator. Basically I want to change the text... well whenever I try to change it it is printing under "Query Details" as well as in the correct position... any thoughts on why this is? Can post more code if needed.

Thanks
_________________________
Austin Henderson