DCSLE syntax error

This forum is for eXpress++ general support.
Post Reply
Message
Author
skiman
Posts: 1199
Joined: Thu Jan 28, 2010 1:22 am
Location: Sijsele, Belgium
Contact:

DCSLE syntax error

#1 Post by skiman »

Hi Roger,

When trying to compile:
cVar := space(10)
@ 1,5 DCSLE cVar
dcread gui fit

I'm getting a syntax error. DCdialog.ch is included, and contains the DCSLE command.
Best regards,

Chris.
www.aboservice.be

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: DCSLE syntax error

#2 Post by rdonnay »

The below code compiles and runs fine for me.

What kind of syntax error are you getting?
Can you send me your sample program?

Code: Select all

#INCLUDE "dcdialog.CH"

FUNCTION Main()

LOCAL GetList[0], cVar

cVar := space(10)
@ 1,5 DCSLE cVar SIZE 10
dcread gui fit

RETURN nil

PROC appsys ; return
The eXpress train is coming - and it has more cars.

skiman
Posts: 1199
Joined: Thu Jan 28, 2010 1:22 am
Location: Sijsele, Belgium
Contact:

Re: DCSLE syntax error

#3 Post by skiman »

Roger,

I created my sample and saw that I had a typo space(100)).

Sorry, it is working now.

I'm testing it for the use of Chinese characters. I can copy/paste Chinese characters in it. That's a start. :)
Best regards,

Chris.
www.aboservice.be

Post Reply