PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → How Do I?
How Do I?
Débuté par Marius van der Walt, 01 avr. 2004 20:00 - 1 réponse
Posté le 01 avril 2004 - 20:00
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
Posté le 02 avril 2004 - 00:40
>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