35 lines
797 B
Text
35 lines
797 B
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,120,69)
|
|
Icon = Picture["icon:/22/pdf"]
|
|
Resizable = False
|
|
{ botonVerificarFirma Button
|
|
MoveScaled(71,64,23,4)
|
|
Text = (" Verificar Firma")
|
|
Picture = Picture["icon:/22/pdf"]
|
|
}
|
|
{ txtResultado TextArea
|
|
MoveScaled(52,5,67,58)
|
|
Font = Font["-1"]
|
|
ReadOnly = True
|
|
}
|
|
{ labelResultado Label
|
|
MoveScaled(52,1,57,4)
|
|
Text = ("Resultado de la verificación de la Firma del Documento PDF")
|
|
}
|
|
{ EscogePDF FileChooser
|
|
MoveScaled(1,5,50,58)
|
|
Font = Font["-1"]
|
|
ReadOnly = True
|
|
}
|
|
{ labelSelecciona Label
|
|
MoveScaled(1,1,50,4)
|
|
Text = ("Seleccione el PDF que desee verificar")
|
|
}
|
|
{ botonSalir Button
|
|
MoveScaled(96,64,23,4)
|
|
Text = (" Salir")
|
|
Picture = Picture["icon:/22/quit"]
|
|
}
|
|
}
|