Well, on the other side this is nothing I would let kixforms do.
Code:
Break On
$System=CreateObject("Kixtart.System")
$Form=$System.Form
$txt=$Form.TextBox
$s=$txt.Text
What does it do ?
-> Creating a handle to the Kixtart.System object (kixforms.dll classic) -> Create a form object ($Form=$System.Form) -> Create a child object (TextBox) on the form Object (correct way would be creating a control thing: $txt = $Form.Controls.Add("TextBox") ->next you assign the empty .Text Property of $txt to an implicitly created variable $s
What's the purpose of this ?
[this post is of course in reply to It_took_my_meds ]