Hallo,
ich stehe vor dem Problem mein Fenster
nur für bestimmte Elemente zu vergrößern.
Also, Buttons sollen bleiben aber Tabs und Inhalt sollen
vergrößert werden.
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 612, 419, 203, 223)
$Button1 = GUICtrlCreateButton("Button1", 16, 48, 75, 25)
$Button2 = GUICtrlCreateButton("Button2", 16, 80, 75, 25)
$Tab1 = GUICtrlCreateTab(104, 48, 481, 345)
$TabSheet1 = GUICtrlCreateTabItem("TabSheet1")
$Pic1 = GUICtrlCreatePic("C:\2.jpg", 128, 88, 444, 292)
$TabSheet2 = GUICtrlCreateTabItem("TabSheet2")
GUICtrlCreateTabItem("")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Viele Grüße
Ilse ![]()