#IF Designer Type Preprocessoring?
I'm making an application that has a couple panels and I always run into the problem of where to design all the panels. I hate to resize the boxs all the time to make changes to them and usually work on them outside of the forms main size.
Question: Is it possible to do something like this.
#If Designer Then
Me.ClientSize = New System.Drawing.Size(1200, 1000)
#Else
Me.ClientSize = New System.Drawing.Size(600, 460)
#End If
'This is also used to move panels and such around... my expample resizes the actual form.
I mostly want to do this to the panels because i've found that resizing all my panels onload causes a long lag on slower computers when starting up (its the only thing im calling onLoad the rest is based on events, mostly clicks).
Thanks You.

