Relocating Splash Screen

T

tx12345

Hi

I have a nice splash screen for my prog, but it seems to display a
little to the left of center.

Any way to 'place' the splash screen in a specific part of the screen?

tx
 
T

tx12345

for the sake of somebody else with a similar question:

There were two methods

In the code part of the userfor (ie splash screen in this case)

Private Sub UserForm_Activate()
Me.Top = 100
Me.Left = 100
End Sub

Another was to enter the left/top coordinates in the object properties
section
 
Top