Need a little help on this since it seems to be vastly different than VB6.
I have multiple forms and would like to set the Startup Position of secondary forms (form2 & form3) slightly lower, and to the right of the primary form (form1); similar to the 'cascade' effect in Excel. Note that the primary form is NOT an MDI Container.
I've have form1 Startup Position = CenterScreen and all subsequent forms are set as Manual.
In VB6, a form had a Left & Top property and we could code something like:
form2.top = form1.top - 100: form2.left = form1.left + 100
Is there a similar, non-rocket science way to do this in .NET?
Appreciate your help,