Respuesta
en
Microsoft Excel
y en 1 temas más
a
Generar hipervínculos automáticamente para luego buscar y abrirlo mediante un formulario de búsqueda
Vamos con la respuesta... (Y) Primero... creamos un Form vacío, de nombre pdfform y lo suficientemente grande como para mostrar nuestro pdf. Segundo, agregamos un modulo... con el siguiente código Sub LoadPDF(FicPdf As String, NoPage As Integer)...
Respuesta
en
Microsoft Excel
y en 2 temas más
a
Encontrar ultimo registro para ingresar otro
Private Sub CommandButton3_Click() 'Por.Dante Amor Set b = Sheets("Proveedores").Range("a:k").Find(ComboBox1, lookat:=xlWhole) If Not b Is Nothing Then Sheets("Proveedores").Cells(b.Row, "a") = TextBox1 Sheets("Proveedores").Cells(b.Row, "c") =...