NOEXITVALID problem

This forum is for eXpress++ general support.
Post Reply
Message
Author
zolifree
Posts: 35
Joined: Sun Sep 19, 2010 6:55 am

NOEXITVALID problem

#1 Post by zolifree »

Hi Roger!

I wanted to use the NOEXITVALID in DCGET, but it caused error.
I found in DCDIALOG.CH what caused it:

This line is wrong:

Code: Select all

#translate NOEXITVALID <cb> =>  VALID {|o,lExit|iif(!lExit,Eval(<cb>,o),TRUE)}
Replaced with this, and everything working well:

Code: Select all

#translate NOEXITVALID <cb> =>  VALID {|o,lExit|iif(!lExit,Eval(<cb>,o),.t.)}  
Best regards,
Zoltan

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

Re: NOEXITVALID problem

#2 Post by rdonnay »

Zoltan -

Thank you for that feedback.

I corrected it in my DCDIALOG.CH.
The eXpress train is coming - and it has more cars.

Post Reply