Abrir distintos tipos de archivos mediante VBA

Deivid

Board Regular
Joined
Jan 11, 2008
Messages
56
Hola a todos. Gracias ante todo por el aporte hacia mis peticiones. Bueno, hoy vengo con una pregunta muy sencilla.
En mi hoja tengo tres CmdButtons:
Cmd1 "Abrir Control.pdf"
Cmd2 "Abrir Archivo ayuda.doc"
Cmd3 "Abrir Directorio Clientes"
Me gustaria saber como implantar el codigo vba para que cada macro me cada uno de estos archivos, en ventana maximizada? Los tres archivos se encuentran en C:\wg01\Mi zona
Gracias
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Ya he encontrado la manera de hacerlo. Abrir un archivo pdf o doc y por otro lado abrir otra aplicacion.
Como bien dije, estas aplicaciones y documentos los abro desde una hoja que se llama Menu principal. Compuesta por varios botones, y no CmdButtons como os dije, cada uno hace una cosa...
Boton 1:
Sub abre_VB6()
'
' Un documento de word
ActiveWorkbook.FollowHyperlink Address:="D:\EXCEL\TEORIA\GuiaVB_6.doc", _
NewWindow:=True

End Sub

Boton 2:
Sub abre_TVAnts()
'
'Abre la aplicacion TVAnts
Dim Apertura
On Error GoTo Abre
AppActivate "TVAnts"
Exit Sub
End
Abre:
Apertura = Shell("C:\Archivos de Programa\TVAnts\TVAnts.exe", 1)
End Sub

Pero ahora se me plantea la duda de como cerrar la aplicacion TVAnts o si tengo mas de una aplicacion, una vez cierro el Menu Principal.xls
 
Upvote 0

Forum statistics

Threads
1,223,970
Messages
6,175,726
Members
452,667
Latest member
vanessavalentino83

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top