Hi
I have a picturebox that contains images and labels
I am trouble make it expand to the proper height-width using a timer
Private Sub Timer2_Timer() 'expand

With picOpenOptions
.Visible = True
.Width = .Width + 90
.Height = .Height + 160

If .Width >= 2025 And .Height >= 4095 Then
Timer2.Enabled = False
End If
sometimes the height is wrong and other times the width
How can i write this ?