Dim TWidth As Variant, THeight As Variant
Dim strScreenRes As String
' Obtener resolución de pantalla
TWidth = Screen.Width Screen.TwipsPerPixelX
THeight = Screen.Height Screen.TwipsPerPixelY
strScreenRes = TWidth & " x " & THeight
If strScreenRes = "640 x 480" Then
'codigo para posicionar ventana
Else
'colocar en el centro de la pantalla
frmMainMDI.Move (Screen.Width - frmMainMDI.Width) 2, (Screen.Height - frmMainMDI.Height) 2
End If