Re: Odd VFP DO WHILE Behavior
- From: Jan Bucek <bucek.jan@xxxxxxx>
- Date: Tue, 24 Apr 2007 14:12:49 +0200
See HELP - topic NULL. And careful with using null anywhere.
Jack Jackson napsal(a):
I noticed the following odd behavior (in VFP9)..
LOCAL xx
xx = .NULL.
DO WHILE xx
...
ENDDO
The loop code is not executed, which is what I would expect.
LOCAL xx
xx = .T.
DO WHILE xx
xx = .NULL.
ENDDO
The loop code is executed forever. Doesn't that seem wrong?
- Follow-Ups:
- Re: Odd VFP DO WHILE Behavior
- From: Jack Jackson
- Re: Odd VFP DO WHILE Behavior
- References:
- Odd VFP DO WHILE Behavior
- From: Jack Jackson
- Odd VFP DO WHILE Behavior
- Prev by Date: Re: Odd VFP DO WHILE Behavior
- Next by Date: Application/Executable Path References
- Previous by thread: Re: Odd VFP DO WHILE Behavior
- Next by thread: Re: Odd VFP DO WHILE Behavior
- Index(es):
Relevant Pages
|
Loading