Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Xbase DO CASE indention
Message
General information
Forum:
Humor
Category:
Other
Miscellaneous
Thread ID:
01564657
Message ID:
01564779
Views:
38
>>Me too. Also, the WITH x clause should NEVER, EVER include
>>the trailing period.
>Not sure if I follow you... (oops, three trailing periods!)

Some languages let you use the parent control in WITH and ENDWITH by including the trailing period.

My preference:
* Always use this:
WITH thisForm.someControl
    .Height = 20
    .BackColor = RGB(0,0,255)
    .FontName = "Courier New"
ENDWITH

* NEVER use this:
WITH thisForm.someControl.
    Height = 20
    BackColor = RGB(0,0,255)
    FontName = "Courier New"
ENDWITH
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform