Para el número 1:
Private Sub UserForm_Activate()
'Act.Por.Dante Amor
Set h1 = Sheets("REGISTRO")
Set h2 = Sheets("Temporal")
cols = Array(6, 21, 12) 'columnas a agregar
For j = LBound(cols) To UBound(cols)
cmbEncabezado.AddItem h1.Cells(1, cols(j)) 'agrega encabezado
cmbEncabezado.List(cmbEncabezado.ListCount - 1, 1) = cols(j)
'agrega número columna
Next
cmbEncabezado = h1.Cells(1, cols(0))
ListBox1.ColumnHeads = True
End Sub
Para el número 2
'
Private Sub UserForm_Activate()
Textexpediente = h1.Cells(fila, "F")
Textdenomina = h1.Cells(fila, "S")
Textreferencia = h1.Cells(fila, "L")
Texttipo = h1.Cells(fila, "J")
textinfcoor = h1.Cells(fila, "D")
Textconsejero = h1.Cells(fila, "A")
Textcoordinador = h1.Cells(fila, "B")
Textenvio = h1.Cells(fila, "C")
'Envío y recepción de informes MUESTRO DATOS EDITABLES
Textpmm1 = h1.Cells(fila, "BU")
Textpmm2 = h1.Cells(fila, "BV")
Textpmm3 = h1.Cells(fila, "BW")
Textsam1 = h1.Cells(fila, "BX")
Textsam2 = h1.Cells(fila, "BY")
Textsam3 = h1.Cells(fila, "BZ")
Textbom1 = h1.Cells(fila, "CA")
Textbom2 = h1.Cells(fila, "CB")
Textbom3 = h1.Cells(fila, "CC")
Textmov1 = h1.Cells(fila, "CD")
Textmov2 = h1.Cells(fila, "CE")
Textmov3 = h1.Cells(fila, "CF")
Textacu1 = h1.Cells(fila, "CG")
Textacu2 = h1.Cells(fila, "CH")
Textacu3 = h1.Cells(fila, "CI")
Textzv1 = h1.Cells(fila, "CJ")
Textzv2 = h1.Cells(fila, "CK")
Textzv3 = h1.Cells(fila, "CL")
Texttall1 = h1.Cells(fila, "CM")
Texttall2 = h1.Cells(fila, "CN")
Texttall3 = h1.Cells(fila, "CO")
Textpub1 = h1.Cells(fila, "CP")
Textpub2 = h1.Cells(fila, "CQ")
Textpub3 = h1.Cells(fila, "CR")
Textalu1 = h1.Cells(fila, "CS")
Textalu2 = h1.Cells(fila, "CT")
Textalu3 = h1.Cells(fila, "CU")
Textvias1 = h1.Cells(fila, "CV")
Textvias2 = h1.Cells(fila, "CW")
Textvias3 = h1.Cells(fila, "CX")
Textjmd1 = h1.Cells(fila, "CY")
Textjmd2 = h1.Cells(fila, "CZ")
Textjmd3 = h1.Cells(fila, "DA")
Textpe1 = h1.Cells(fila, "DB")
Textpe2 = h1.Cells(fila, "DC")
Textpe3 = h1.Cells(fila, "DD")
Textcultu1 = h1.Cells(fila, "DE")
Textcultu2 = h1.Cells(fila, "DF")
Textcultu3 = h1.Cells(fila, "DG")
Textmadsa1 = h1.Cells(fila, "DH")
Textmadsa2 = h1.Cells(fila, "DI")
Textmadsa3 = h1.Cells(fila, "DJ")
Textcont = h1.Cells(fila, "DK")
Textvallas = h1.Cells(fila, "DL")
'
If h1.Cells(fila, "DL") = "SI" Then CheckBoxvallas = True
If h1.Cells(fila, "DK") = "SI" Then CheckBoxcont = True
'
Select Case h1.Cells(fila, "D")
Case "FAVO": OptionButton1 = True
Case "DESF": OptionButton2 = True
Case "NOCM": OptionButton3 = True
Case "ANUL": OptionButton4 = True
Case "PRON": OptionButton5 = True
Case "TARD": OptionButton6 = True
Case "SLPS": OptionButton7 = True
Case "NOPS": OptionButton8 = True
End Select
End Sub
'S aludos. Dante Amor. Recuerda valorar la respuesta. G racias