form appears on second monitor

P

Paul Pedersen

In VBA, I have a simple statement to display a form when a certain worksheet
is selected:

Private Sub Worksheet_Activate()
frmMyform.Show
End Sub

But when the form appears, it always appears on the second monitor. It
doesn't matter which monitor is showing the worksheet. Furthermore, even
though both form.top and form.left are zero, the form appears up against the
left edge of the monitor as expected (although the wrong monitor), but
centered vertically.

How can I put the form where I want it?
 
N

NickHK

Paul,
Look at the .StartUpPosition property of the userform.
May depend also how you have you video display/driver set up.

If you second monitor (physically, left to right) is actually number 1, that
may make sense.
Trying relocating the monitors or switching the numbers to match the left to
right order.

NickHK
 
P

Paul Pedersen

I found the startupposition property, thanks.

That second monitor actually is #2. But the problem seems to have gone away
when I set startupposition to Center.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top