vtol Valued Contributor


Joined: 05 Feb 2004 Posts: 656 Location: Eastern Indiana
|
Posted: Thu Feb 23, 2006 5:21 am Post subject: EDIT text is garbled with 2 verticle pipes, any way to fix? |
|
|
VDS5
EDIT text is garbled with 2 verticle pipes, any way to clean out the unneeded line feeds or what ever they are?
I tried @TRIM / STRDEL @ASC switching #dlgtext with @item, all kinds of things, no success...
Here some of it below:
| Code: | DIALOG ADD,TEXT,h1,95,90,,,,,STYLE5
DIALOG ADD,TEXT,h2,95,105,,,,,STYLE5
DIALOG ADD,TEXT,h3,95,120,,,,,STYLE5
DIALOG ADD,TEXT,h4,95,135,,,,,STYLE5
DIALOG ADD,TEXT,h5,95,150,,,,,STYLE5
DIALOG ADD,TEXT,h6,95,165,,,,,STYLE5
DIALOG ADD,EDIT,editbox,57,217,137,135,,,STYLE8
:applyBUTTON
LIST clear,1
LIST add,1,@dlgtext(h1)
LIST add,1,@dlgtext(h2)
LIST add,1,@dlgtext(h3)
LIST add,1,@dlgtext(h4)
LIST add,1,@dlgtext(h5)
LIST add,1,@dlgtext(h6)
wait "0.2"
%%string = @TRIM(@text(1))
LIST assign,1,@text(1)
dialog set,editbox,%%string
goto evloop |
The numbers something look like this: 23||14||55||02||19||06
I seacrhed forum with bad keywords I guess, no luck(seems this was old VDS5 problem)
Thanks |
|