Tentativo numero 2:
codice:
Private sub Form_Load()
  Dim topPos As Single
  Dim leftPos As Single
  
  nomeForm.Visible = False
  
  topPos = (Screen.Height - nomeForm.Height) / 2
  leftPos = (Screen.Width - nomeForm.Width) / 2
  nomeForm.Move leftPos, topPos
  
  nomeForm.Visible = True
End Sub
Secan

P.S. Ma se apri la form in fullscreen com'è possibile che ti rimanga dello spazio?
Secan