Initialize Form in Secondary or Other Monitor than primary

How do init a form that I am drawing using directX to my secondary screen. I change the Device(adapter:to 1 and the window size is correct for the secondary screen but shows on the first screen). THanks Jeff
[207 byte] By [carterwjeff] at [2007-12-28]
# 1
Try this:

private void Form1_Load(object sender, EventArgs e) {
Screen scrn = Screen.PrimaryScreen;
if (Screen.AllScreens.Length > 1) scrn = Screen.AllScreens[1];
this.Location = scrn.WorkingArea.Location;
this.Size = scrn.WorkingArea.Size;
}

nobugz at 2007-9-4 > top of Msdn Tech,Windows Forms,Windows Forms Designer...