Hi Dean,
Based on my understanding, you want to zoom a form for width and height of
1 to the fullsize.
Here I write a smaple for you.
Private Sub Timer1_Tick(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Timer1.Tick
If Me.Width >= 300 Then
Me.Timer1.Stop()
Me.FormBorderStyle = FormBorderStyle.Sizable
End If
Me.Width += 5
Me.Height += 5
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As
System.EventArgs) Handles MyBase.Load
Me.Width = 0
Me.Height = 0
Me.FormBorderStyle = FormBorderStyle.None 'This one is necessary.
End Sub
If you have any concern on this issue, please post here.
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure!
www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.