Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Xbase DO CASE indention
Message
Information générale
Forum:
Humor
Catégorie:
Autre
Divers
Thread ID:
01564657
Message ID:
01564779
Vues:
37
>>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform