Respuesta
en
Ingeniería Informática
a
Abrir excel desde formulario de access
Private Sub Comando0_Click() On Error GoTo Err_Comando0_Click Dim oApp As Object Set oApp = CreateObject("Excel.Application") oApp.Visible = True 'Only XL 97 supports UserControl Property On Error Resume Next oApp.UserControl = True...