Re: help please whit concatenation
hebert rangel wrote:
>
>
> how do i take a variable from a text box if my tex box is like this
> }}}
<eucode>
> constant EDIT = create(MultiEditText, "", 0, POPUP,4,38,180,
> 19,{0,WS_EX_CLIENTEDGE})
> </eucode
> and i want to use what i enter in this text box to concatenate with what is
> typed in this other text box
> }}}
<eucode>
> constant EDIT1 = create(MultiEditText, "", 0, POPUP,4,38,180,
> 19,{0,WS_EX_CLIENTEDGE})
> </eucode>
{{{
> can i concatenate them like this edit + edit1 = edited
Yes:
sequence edit, edit1, edited
edit = getText( EDIT )
edit1 = getText( EDIT1 )
edited = edit & edited
Matt Lewis
|
Not Categorized, Please Help
|
|