Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiscreen computers

Status
Not open for further replies.

Kudel

Programmer
Dec 3, 2002
36
0
0
NO
Hi all!

I’m part of a team that develops an application that uses multiple forms. Our concern is how we can be certain that every form pops up on the same screen as the main form when the user has a multi screen computer.

Any hints, tips or solutions are appreciated.

-Kudel
 
hi

We also have multiple screens and I do the following:

var rnd : integer;
:
rnd := random(100);
left := FormMain.FormList.Left + rnd;
Top := FormMain.FormList.Top + rnd;

lou

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top