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

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -