Novembre 2024 | Lun | Mar | Mer | Jeu | Ven | Sam | Dim |
---|
| | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | | Calendrier |
|
|
| COMBO and Width | |
| | Auteur | Message |
---|
Severin
Nombre de messages : 547 Localisation : Braunschweig / Germany Date d'inscription : 13/12/2010
| Sujet: COMBO and Width Lun 2 Avr 2012 - 2:28 | |
| Kann es sein das eine COMB nicht in der Höhe einstellbar ist ??? Also die Höhe ein FIXWERT. Severin Hier ein Beispiel: Peut-il être qu'un COMB n'est pas réglable en hauteur? Ainsi, la hauteur d'une valeur fixe. Severin Voici un exemple: - Code:
-
' *** Form 0000 **************************************************************** Full_space 0000 ' ' *** Edit erstellen edit 20 hide 20 top 20,15 left 20,10 height 20,30 width 20,90 ' text 20,"EDIT1" ' show 20 ' *** Combo1 erstellen combo 21 hide 21 top 21,15 left 21,110 height 21,30 :' <--- width 21,90 ' text 21,"COMBO1" ' show 21 ' *** Combo2 erstellen combo 22 hide 22 top 22,15 left 22,210 height 22,90 :' <--- width 22,90 ' text 22,"COMBO2" ' show 22
End | |
| | | Klaus
Nombre de messages : 12331 Age : 75 Localisation : Ile de France Date d'inscription : 29/12/2009
| Sujet: Re: COMBO and Width Lun 2 Avr 2012 - 9:03 | |
| Richtig. Das normals Combo-Fenster entspricht einem EDIT. Sowie man auf den Combo_Knopf klickt, erscheint eine Popup-Liste. Die Höhe dieser Liste ist den Anzahl der enthaltenen Zeilen angepasst, bis auf eine Anzahl von 8 Zeilen (bei Standart-Schriftgrösse). Bei mehr Zeilen erscheint eine Scroll-Bar, und das Fenster Ändert seine Höhe nicht mehr. Schau dies an: - Code:
-
' *** Form 0000 **************************************************************** Full_space 0000 ' ' *** Edit erstellen edit 20 hide 20 top 20,15 left 20,10 height 20,30 width 20,90 ' text 20,"EDIT1" ' show 20 ' *** Combo1 erstellen combo 21 hide 21 top 21,15 left 21,110 height 21,30 :' <--- width 21,90 ' text 21,"COMBO1"
dim i% for i%=1 to 30 item_add 21,"Zeile "+str$(i%) next i% ' show 21 ' *** Combo2 erstellen combo 22 hide 22 top 22,15 left 22,210 height 22,90 :' <--- width 22,90 ' text 22,"COMBO2"
for i%=1 to 30 item_add 22,"Zeile "+str$(i%) next i% ' show 22
End | |
| | | Severin
Nombre de messages : 547 Localisation : Braunschweig / Germany Date d'inscription : 13/12/2010
| Sujet: Re: COMBO and Width Lun 2 Avr 2012 - 19:05 | |
| Mein Test zeigt die Höhe ist von der Schriftgrösse abhängig. Muss noch weiter testen. Severin Mon test indique le montant dépend de la taille de la police. Doit être testé. Severin - Code:
-
' *** Form 0000 **************************************************************** label Schriftart Full_space 0000 ' ' *** Edit erstellen edit 20 hide 20 top 20,15 left 20,10 height 20,30 width 20,90 ' text 20,"EDIT1" ' show 20 ' *** Combo1 erstellen combo 21 hide 21 top 21,15 left 21,110 height 21,30 :' <--- width 21,90 ' text 21,"COMBO1" ' show 21 ' *** Combo2 erstellen combo 22 hide 22 top 22,15 left 22,210 height 22,30 :' <--- width 22,90 ' GOSUB Schriftart text 22,"COMBO2" ' show 22
EnD
Schriftart: font_name 22,"Arial" font_size 22,15 font_bold 22 font_underline 22 font_strike_off 22 font_italic_off 22 RETURN End | |
| | | Contenu sponsorisé
| Sujet: Re: COMBO and Width | |
| |
| | | | COMBO and Width | |
|
Sujets similaires | |
|
| Permission de ce forum: | Vous ne pouvez pas répondre aux sujets dans ce forum
| |
| |
| |