Code: Alles auswählen
Private Sub UserForm_Activate()
UserForm2.Image1.Picture = UserForm1.Image1.Picture
Me.Zoom = 125
Dim Breite As Integer
Dim breite2 As Integer
Dim Höhe As Integer
Dim höhe2 As Integer
Dim ftop As Integer
Dim fleft As Integer
Dim zoomfa As Double
Dim randabstand As Integer
With Me
'Userform
Breite = .Width
Höhe = .Height
'Excel-Fenster
breite2 = Application.Width
höhe2 = Application.Height
ftop = Application.Top
fleft = Application.Left
randabstand = 10
.StartUpPosition = 0
.Left = fleft + randabstand
.Top = ftop + randabstand
.Width = breite2 - 2 * randabstand
.Height = höhe2 - 2 * randabstand
If breite2 < Breite Then
zoomfa = breite2 / Breite * 100
.Zoom = zoomfa
End If
End With
End Sub
Aber wie gesagt ist nur wieder so eine Spielerei von mir.
Saludos Nanu und vielen Dank schonmal an alle die immer helfen