Re: help please whit concatenation

new topic     » goto parent     » topic index » view thread      » older message » newer message

Matt Lewis wrote:
> 
> 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:
> }}}
<eucode>
>     sequence edit, edit1, edited
>     edit = getText( EDIT )
>     edit1 = getText( EDIT1 )
>     edited = edit & edited
> </eucode>
{{{

> 
> Matt Lewis
> 
Matt,

Shouldn't the code be this instead?
sequence edit, edit1, edited
edit = getText( EDIT )
edit1 = getText( EDIT1 )
edited = edit & edit1


Later.

Ferlin Scarborough

Learn To Program Games in Free Courses At
http://www.gameuniv.net

My Euphoria Home Page
http://mywebpage.netscape.com/shadetreesoft

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu