Not a Member Yet,
Click here to Register

ID: 216
Viewed: 3635
Added: Apr 29, 2002
Version:
Snippet uploaded by: snippet
Written By: unknown
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

How to center a form

Highlight all by clicking in box
<!---Declaration--->
'Put this code in the BAS module
Sub Center_Form (frmForm As Form)
frmForm.Left = (Screen.Width - frmForm.Width) / 2
frmForm.Top = (Screen.Height - frmForm.Height) / 2
End Sub

Highlight All
<!---Code--->
Center on the screen
Me.Left = (Screen.Width - Me.Width) / 2
Me.Top = (Screen.Height - Me.Height) / 2

'Centers over main form
Me.Left = frmMain.Left + (frmMain.Width - Me.Width) / 2
Me.Top = frmMain.Top + (frmMain.Height - Me.Height) / 2


'Or create a Center_Form Sub routine
'Call the routine like this:
Center_Form Me;


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!