En el useform IOVigentes
Private Sub ListBox1_Click()
Dim i, NombreIO, PosIO
' busca la posicion del archivo en la hoja 4(IOS)
PosIO = Me.ListBox1.ListIndex
NombreIO = Sheets("IOVigente").Cells(PosIO + 2, 1).Value
' abre el archivo pdf de cada io correspondiente
ruta = "\\respaldo\SGI\Prestacion_del_servicio_de_ transporte\Registros\Instrucciones Operacionales IO Vigentes\" & NombreIO & "." & "pdf"
If ruta <> ruta Then
MsgBox "no hay archivo para mostrar", vbCritical
'en este momoento no esta funcionando la condicional se debe verificar
Else
ActiveWorkbook.FollowHyperlink Address:=ruta
End If
'
UserForm1.Show
End Sub
en el userform1
Private Sub UserForm_Initialize()
fila = IOVigentes.ListBox1.ListIndex + 2
Set h = Sheets("IOVigente")
lblio.Caption = h.Cells(fila, "A")
txtasunto = h.Cells(fila, "B")
End Sub
sal u dos