Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
For loop
Message
De
07/01/1999 14:22:24
 
 
À
07/01/1999 09:40:23
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Divers
Thread ID:
00173475
Message ID:
00173711
Vues:
26
>I have about 20 control textbox and i want to change all this backcolor to grey color
>
>i have code :
>
> thisform.textbox1.backcolour = grb(225,225,225)
> thisform.textbox2.backcolour = grb(225,225,225)
> thisform.textbox3.backcolour = grb(225,225,225)
> thisform.textbox4.backcolour = grb(225,225,225)
> ....... so on
>
>
>instead of using so many code to make all textbox to grey color,
>can i use for loop to shorten the code?
>
>i.e.
> for n=1 to 20
> txt1=textbox+alltrim(str(n,2))
> thisform.txt1.backcolor=grb(225,225,225)
> endfor
>
>
>but is doesnt work!!
>anyone can help me on this


Easy

USe Macro Substitution:

If your txt boxes are names sequentially as.. txtBox1,txtBox2,etc

FOR counter = 1 to 20
l_comm = "ThisForm.txtBox"+ALLTRIM(STR(counter))+"backcolor=RGB(225,225,225)"
&l_comm
ENDFOR


Thats it

You can use macro sub for any vfp command as above!
Bernard
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform