I set the tabstop like...
mls_1.tabstop[1] = 8 (this is the default anyway)
I have also tried using the object property setting instead.
I then load the text as...
mle_1.text = 'ABC~tDEF'
And the MLE shows a result of...
ABC
DEF
Can anyone help?
regards
norm
Can you enter into the MLE the folllowing keystroke sequence:
abc
<shift><tab>
def
just enter abc then press shit-tab key sequence then def
Does that also wrap the text as per your example?
IN code, you can try the following:
IF KeyDown(KeyTab!) THEN
this.ReplaceText("~t")
this.SetFocus()
END IF
On Wed, 11 Jun 2003 15:52:43 -0500,
in powersoft.public.powerbuilder.objects
This does not apply to dw columns :-(
steve
[TeamSybase]
thanks Steve
On Fri, 13 Jun 2003 11:29:13 -0400,
in powersoft.public.powerbuilder.objects