ich arbeite mich gerade in die
nonVCL ein.
bisher habe ich nur die Möglichkeit gefunden eine GroupBox in einem Dialog per Resourcefile und CreateDialog zu erstellen.
Delphi-Quellcode:
100 DIALOGEX 10, 10, 249, 191
STYLE DS_MODALFRAME | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
CAPTION "test"
FONT 8, "Arial"
BEGIN
GROUPBOX "Installation process",110,10,10,231,26
END
laut aussage der hilfe
Zitat:
The GROUPBOX statement, which you can use only in a DIALOGEX statement, defines the text, identifier, dimensions, and attributes of a control window.
ist das obige beispiel nur für dialoge gedacht.
wie bekomm ich denn eine groupbox in ein window welches ich per CreateWindow(..) erzeuge?