Discussion:
Kix---Programming | Need help to read out textboxes
(too old to reply)
Thomas M.
2009-05-11 06:51:49 UTC
Permalink
Hi,

IŽve a very simple question concerning textboxes:
I want to read out the content of a textbox. This is a part of my script:

$Eingabe_Test = $PROJEKT.controls.textbox
$gemessen_Test = $Eingabe_Test.text
;(((or $gemessen_Test =
$Eingabe_Test.textbox ???)))
Messagebox('$gemessen_Test','$gemessen_Test',0)

But the messagebox output is empty.
How can I read out the content of the textbox ?

Thank you for help

Thomas
Al Dunbar
2009-05-12 00:52:52 UTC
Permalink
Post by Thomas M.
Hi,
$Eingabe_Test = $PROJEKT.controls.textbox
$gemessen_Test = $Eingabe_Test.text
;(((or $gemessen_Test =
$Eingabe_Test.textbox ???)))
Messagebox('$gemessen_Test','$gemessen_Test',0)
But the messagebox output is empty.
How can I read out the content of the textbox ?
Thank you for help
What scripting language is this, powershell or kixtart?

/Al
David H. Lipman
2009-05-12 01:26:28 UTC
Permalink
Post by Thomas M.
Hi,
$Eingabe_Test = $PROJEKT.controls.textbox
$gemessen_Test = $Eingabe_Test.text
;(((or $gemessen_Test =
$Eingabe_Test.textbox ???)))
Messagebox('$gemessen_Test','$gemessen_Test',0)
But the messagebox output is empty.
How can I read out the content of the textbox ?
Thank you for help
| What scripting language is this, powershell or kixtart?

| /Al


It looks like KiXtart and looks like $gemessen_Test is being assigned a null string and
thus the "messagebox output is empty."
--
Dave
http://www.claymania.com/removal-trojan-adware.html
Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp
Thomas M.
2009-05-12 10:53:30 UTC
Permalink
Yes, itŽs KiXtart.
And yes it looks lige $gemessen_Test = Null.
But why is it Null ?`
IŽve assigned it with $gemessen_Test = $Eingabe_Test.text I thought !

Thanks
Thomas
Post by David H. Lipman
Post by Thomas M.
Hi,
$Eingabe_Test = $PROJEKT.controls.textbox
$gemessen_Test = $Eingabe_Test.text
;(((or $gemessen_Test =
$Eingabe_Test.textbox ???)))
Messagebox('$gemessen_Test','$gemessen_Test',0)
But the messagebox output is empty.
How can I read out the content of the textbox ?
Thank you for help
| What scripting language is this, powershell or kixtart?
| /Al
It looks like KiXtart and looks like $gemessen_Test is being assigned a null string and
thus the "messagebox output is empty."
--
Dave
http://www.claymania.com/removal-trojan-adware.html
Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp
David H. Lipman
2009-05-12 20:23:11 UTC
Permalink
From: "Thomas M." <***@jci.com>

| Yes, itŽs KiXtart.
| And yes it looks lige $gemessen_Test = Null.
| But why is it Null ?`
| IŽve assigned it with $gemessen_Test = $Eingabe_Test.text I thought !

| Thanks
| Thomas



Is, $Eingabe_Test.text , being assigned via some COM Automation ?

What is the REST of the script pertinent to the MessageBox()
--
Dave
http://www.claymania.com/removal-trojan-adware.html
Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp
Loading...