| |
|
|
Georg Hovenbitzer | Hallo zusammen,
gibt es eine Möglichkeit die Höhe einer ComboBox zu ändern. Bei der Erstellung gibt man ja die Weite im ausgeklappten Zustand an und das Control hat immer eine Höhe von ca. 20. Ich bräuchte es aber etwas kleiner, damit es zu den anderen Feldern passt. |
|
|
| Viele Grüsse, Georg Hovenbitzer(Windows XP Pro, XProfan 11.2, Profan2Cpp 1.6a) | 27.03.2007 ▲ |
|
|
|
|
| Hallo Georg...
Hilft dir das? KompilierenMarkierenSeparierenUSERMESSAGES $0010
Declare ComboBox&,CBFont&
Windowstyle 31+512
Windowtitle Combobox
Window 0,0-640,440
LET CBFont&=@Create(Font,Times New Roman,12,6,0,0,0)
LET ComboBox&=@Control(ComboBox,,$40000000+$10000000+$200000+$100000+2+$40,0,100,150,180,%HWND,2615,%HINSTANCE)
LET ComboBox&=@Control(ComboBox,,$40000000+$10000000+$200000+$100000+2+$40,190,100,150,180,%HWND,2615,%HINSTANCE)
SetFont ComboBox&,CBFont&
@ADDCHOICE(ComboBox&,Claudia)
@ADDCHOICE(ComboBox&,Andreas)
@ADDCHOICE(ComboBox&,Chris)
@sendmessage(ComboBox&,$14E,2,0) Handle der Combobox,CB_SETCURSEL Message,Index des Eintrags, 0
While %UMESSAGE<>$0010
Waitinput
Wend
@destroywindow(ComboBox&)
Del ect CBFont&
|
|
|
| |
|
|
|
Georg Hovenbitzer | Hallo Andreas,
dies hilft soweit, dass ich nun zwischen zu kleiner Schrift oder zu großem Feld wählen kann Mir ist nicht ganz klar, wieso eine vorher eingestellte Schrift in ein Editfeld passt aber nicht in un ComboBox
UseFont Arinal Narrow,14,0,1,0,0 SetDialogFont 1 |
|
|
| Viele Grüsse, Georg Hovenbitzer(Windows XP Pro, XProfan 11.2, Profan2Cpp 1.6a) | 27.03.2007 ▲ |
|
|
|