Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Move by splitbar and column visible=.f. with grids
Message
From
07/04/2005 11:35:47
 
 
To
07/04/2005 11:25:32
Metin Emre
Ozcom Bilgisayar Ltd.
Istanbul, Turkey
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Environment versions
Visual FoxPro:
VFP 9
Miscellaneous
Thread ID:
01002174
Message ID:
01002322
Views:
16
>sorry for my head... :))
>
>You're writing very symbolic like a lyric or puzzle...
>
>if "inlist(m.nDirection, 6, 7)" give .f., "and m.this.ShowMeProperly()" won't run. :)))
>
>
>> =inlist(m.nDirection, 6, 7) and m.this.ShowMeProperly()


Yes, I sometimes do

Should have been
if( inlist(m.nDirection, 6, 7) )
    = m.this.ShowMeProperly()
endif


or 

do case
case !inlist(m.nDirection, 6, 7)

case !m.this.ShowMeProperly()

endcase


or 

=!inlist(m.nDirection, 6, 7) or m.this.ShowMeProperly()

or

=!inlist(m.nDirection, 6, 7) or !m.this.ShowMeProperly()
Gregory
Previous
Reply
Map
View

Click here to load this message in the networking platform