Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/07/2007, 00:39
luciano
 
Fecha de Ingreso: abril-2004
Mensajes: 192
Antigüedad: 21 años, 4 meses
Puntos: 0
Re: Detectar Version de Excel

Probá esta función a ver si te sirve .salu2

Código:
Private Function ver() As Variant

Dim OExcel As Object
Dim TempVer As Variant
Set OExcel = CreateObject("Excel.Application")

On Error Resume Next

TempVer = OExcel.version

If Err = 0 Then
   ver = TempVer
End If

OExcel.quit
Set OExcel = Nothing

Err.Clear

End Function

Private Sub Form_Load()
MsgBox ver
End Sub
__________________
Recursos visual basic