Severin
Nombre de messages : 547 Localisation : Braunschweig / Germany Date d'inscription : 13/12/2010
| Sujet: HEIGHT Form Lun 14 Jan 2013 - 14:31 | |
| Ich bin auf Win 8. Daher muss ich meine Bildschirmabmessungen anpassen. Mein Problem: Gibt es eine Mindesthöhe für Formen. Ich kann die Form 0002 nicht in der Höhe eistellen. Je suis sur Win huitième Par conséquent, je dois régler mes dimensions de l'écran. Mon problème: Y at-il un montant minimum pour les formulaires. Je ne peux pas définir le formulaire 0002 dans la hauteur. I'm on Win 8th Therefore I have to adjust my screen dimensions. My problem: Is there a minimum amount for forms. I can not set the form 0002 in height. - Code:
-
' FORM 0000 TOP 0000,0 LEFT 0000,0 WIDTH 0000,SCREEN_X HEIGHT 0000,SCREEN_Y-40 Color 0000,000,000,000
FORM 0001 TOP 0001,32 LEFT 0001,9 WIDTH 0001,SCREEN_X-18 HEIGHT 0001,SCREEN_Y-40-41-30 Color 0001,255,000,000 Border_hide 0001
FORM 0002 TOP 0002,822 LEFT 0002,9 WIDTH 0002,SCREEN_X-18 HEIGHT 0002,30 Color 0002,000,255,000 Border_hide 0002
Dernière édition par Severin le Lun 14 Jan 2013 - 15:16, édité 1 fois | |
|
papydall
Nombre de messages : 7017 Age : 74 Localisation : Moknine (Tunisie) Entre la chaise et le clavier Date d'inscription : 03/03/2012
| Sujet: Re: HEIGHT Form Lun 14 Jan 2013 - 15:09 | |
| Désolé Severin. Je ne comprends pas ta demande !
Sorry Severin. I do not understand your request !
Leider Severin. Ich verstehe nicht, Ihre Anfrage ! | |
|
Severin
Nombre de messages : 547 Localisation : Braunschweig / Germany Date d'inscription : 13/12/2010
| Sujet: Re: HEIGHT Form Lun 14 Jan 2013 - 15:18 | |
| | |
|
JL35
Nombre de messages : 7112 Localisation : 77 Date d'inscription : 29/11/2007
| Sujet: Re: HEIGHT Form Lun 14 Jan 2013 - 15:34 | |
| Hello Severin, The minimum height for a Form is 38 without Border_Hide With the BORDER_HIDE after the definition of dimensions, the minimum height for Form 2 is again 38: Border_Hide seems ignored, the border is effectively erased, but the border remains in dimensions. BUT, if you put BORDER_HIDE before, you can reduce the height as you want: your example: - Code:
-
FORM 0002: Border_hide 2 TOP 0002,822 LEFT 0002,9 WIDTH 0002,SCREEN_X-18 HEIGHT 0002,10 Color 0002,000,255,000 ' Border_hide 0002 | |
|