Exemple #1
0
        private void btnVerReferencia_Click(object sender, EventArgs e)
        {
            Int32 Codigo = Convert.ToInt32(cbbProveedor.SelectedValue);
            frmListaFacturasPorProveedor ListaDocumento = new frmListaFacturasPorProveedor(Codigo, "Referencia");

            ListaDocumento.ShowDialog(this);
        }
Exemple #2
0
 private void ButtonX6_Click(object sender, EventArgs e)
 {
     if (ProveedorID.HasValue)
     {
         Int32 Codigo = Convert.ToInt32(ProveedorID);
         frmListaFacturasPorProveedor ListarDocumentos = new frmListaFacturasPorProveedor(Codigo, "Referencia");
         ListarDocumentos.ShowDialog(this);
     }
 }