| View previous topic :: View next topic |
| Author |
Message |
X-Tools Valued Contributor

Joined: 20 Sep 2001 Posts: 296 Location: Germany
|
Posted: Tue Aug 05, 2003 6:29 am Post subject: @CR() as FIELDSEP in VDS5 |
|
|
Hi,
does @cr() not work anymore as fieldsep in vds 5 ?
I tried for parsing statusbar elements from vdslist.dll
Bye, Fabian |
|
| Back to top |
|
 |
X-Tools Valued Contributor

Joined: 20 Sep 2001 Posts: 296 Location: Germany
|
Posted: Tue Aug 05, 2003 6:33 am Post subject: @CR() as FIELDSEP in VDS5 |
|
|
and another question.
how can i get the statusbar content from the new vds5 statusbar ?
@dlgtext(statusbarelement) returns an error.
Thanks,
Fabian |
|
| Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
|
| Back to top |
|
 |
CodeScript Moderator Team

Joined: 08 Jun 2003 Posts: 1060 Location: India
|
Posted: Tue Aug 05, 2003 5:15 pm Post subject: Re: @CR() as FIELDSEP in VDS5 |
|
|
| X-Tools wrote: | and another question.
how can i get the statusbar content from the new vds5 statusbar ?
@dlgtext(statusbarelement) returns an error.
Thanks,
Fabian |
Try this :
| Code: | DIALOG CREATE,New Dialog,-1,0,240,160
DIALOG ADD,STATUS,STATUS1,Information obtained!
DIALOG SHOW
INFO @WINTEXT(~STATUS1)
EXIT |
_________________ Regards
- CodeScript
Give your application a professional look with the VDSGUI Extension |
|
| Back to top |
|
 |
X-Tools Valued Contributor

Joined: 20 Sep 2001 Posts: 296 Location: Germany
|
Posted: Wed Aug 06, 2003 5:27 am Post subject: @CR() as FIELDSEP in VDS5 |
|
|
Hi,
thanks for your help.
Both working. Maybe the @cr() thing is a problem with vdslists.dll-
I will test it today.
Getting statusbar content with @wintext works fine. Why doesn't @dlgtext work ? I thought this was possible in vds4.
Bye, Fabian |
|
| Back to top |
|
 |
Tommy Admin Team
Joined: 16 Nov 2002 Posts: 746 Location: The Netherlands
|
Posted: Wed Aug 06, 2003 9:32 am Post subject: |
|
|
You might want to try:
OPTION FIELDSEP,@CR()@CHR(10)
Or try to use the LIST ASSIGN command with a temporary list. |
|
| Back to top |
|
 |
|