Ver Mensaje Individual
  #2 (permalink)  
Antiguo 15/06/2004, 08:22
Avatar de Kelpie
Kelpie
 
Fecha de Ingreso: febrero-2002
Ubicación: NorthSpain
Mensajes: 609
Antigüedad: 22 años, 3 meses
Puntos: 8
Probablemente puedas solucionarlo con el objeto screen, que te ofrece dos útiles propiedades:
screen.width
screen.height

Podrías hacerte una función del tipo
Código:
sub centraForm (byval cual as form)
   cual.left=(screen.width-cual.width)/2
   cual.top=(screen.height-cual.height)/2
end sub
__________________
Kelpie