Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Vertical Check Box
Message
 
À
05/05/1997 09:04:43
Vinod Parwani
United Creations L.L.C.
Ad-Dulayl, Jordanie
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00030798
Message ID:
00030928
Vues:
34
>>>Can anyone suggest me how to make vertical check box ??
>>
>>Do you try some CHR(13) in your caption ...
>
>No, I haven't tried. But I will try, Thanks !!

Just for fun:

**************************************************
*-- Class: vertcheck
*-- ParentClass: container
*-- BaseClass: container
*
DEFINE CLASS vertcheck AS container

Width = 12
Height = 120
*-- the caption of the label vertically
xcaption = ("")
Name = "vertcheck"

ADD OBJECT check1 AS checkbox WITH ;
Top = 3, ;
Left = 3, ;
Height = 18, ;
Width = 17, ;
Caption = (""), ;
Name = "Check1"

ADD OBJECT label1 AS label WITH ;
AutoSize = .T., ;
Caption = (""), ;
Height = 18, ;
Left = 5, ;
Top = 21, ;
Width = 0, ;
Name = "Label1"

*-- set the caption of the label to the xcaption property (vertically)
PROCEDURE setcaption
z=this.xcaption
c=""
for i = 1 to len(z)
if i = len(z)
c=c+substr(z,i,1)
else
c=c+substr(z,i,1)+chr(13)
endif
endfor
this.label1.caption=c
ENDPROC

PROCEDURE Init
this.setcaption
ENDPROC

PROCEDURE Refresh
this.setcaption
ENDPROC

ENDDEFINE
*
*-- EndDefine: vertcheck
**************************************************

:-)
If we exchange an apple, we both get an apple.
But if we exchange an idea, we both get 2 ideas, cool...


Gérald Santerre
Independant programmer - internet or intranet stuff - always looking for contracts big or small :)
http://www.siteintranet.qc.ca
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform