README.md

December 4, 2022 ยท View on GitHub

!Center Your Form!

Description

This will Center your form on your screen. It will also higher it a tiny bit, so it looks centered above the TaskBar.

More Info

Submitted On
ByStephen Glauser
LevelUnknown
User Rating3.1 (25 globes from 8 users)
CompatibilityVB 3.0, VB 4.0 (16-bit), VB 4.0 (32-bit), VB 5.0, VB 6.0
CategoryMiscellaneous
WorldVisual Basic
Archive File

Source Code

Sub FormCenter (Frm As Form)
Rem Written by Stephen Glauser
Rem Last Update: August 1, 1999
Rem Centers your form on the Screen
Rem FormCenter Me
Frm.Top = (Screen.Height * .85) / 2 - Frm.Height / 2
Frm.Left = Screen.Width / 2 - Frm.Width / 2
End Sub