PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV 2024 → How Do I?
How Do I?
Iniciado por Marius van der Walt, abr., 01 2004 8:00 PM - 1 resposta
Publicado em abril, 01 2004 - 8:00 PM
Hi

It seems that some of my characters are thrown away when I submit the message.
The question basically is if I have filled a ListBox with the following:
"Peter" TAB "Jones" TAB 25"
The return value string is also the same.
How do I get the string value between the two TAB's. (Jones)
The "Position" command does not recognise the "TAB".
Any suggestions?
Regards
Publicado em abril, 02 2004 - 12:40 AM
>Hi
Look at the ExtractString function:
Ch is string = "Peter" + TAB + "Jones" + TAB + "25"
ExtractString(Ch, 2) // Returns "Jones"
Hope this helps
Floyd

It seems that some of my characters are thrown away when I submit the message.
The question basically is if I have filled a ListBox with the following:
"Peter" TAB "Jones" TAB 25"
The return value string is also the same.
How do I get the string value between the two TAB's. (Jones)
The "Position" command does not recognise the "TAB".
Any suggestions?
Regards