c# - I am using a MDI application. I want to set the start position of a formShow -


in application when create new form pops on old one, set start position next form displaying.

how can set form start position.

this iv got @ moment:

this.startposition = system.windows.forms.formstartposition.centerscreen; 

but want along lines of:

this.startposition = system.windows.forms.formstartposition.left(350); 

before opening form set

this.startposition = system.windows.forms.formstartposition.manual;  this.location = new system.drawing.point(20, 20); // or set desidered location 

Comments

Popular posts from this blog

How do you change vbulletin's home page to the forums instead of the default (CMS or Activity Stream)? -

c++ - Troubles when compiling phash program -