This commit is contained in:
2022-07-09 23:10:58 +00:00
parent d7fde6c8a0
commit 059546b868
4 changed files with 351 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AyaNovaQBI
{
public partial class FixInvoiceProblems : Form
{
public FixInvoiceProblems()
{
InitializeComponent();
}
private void FixInvoiceProblems_Load(object sender, EventArgs e)
{
btnOK.Text = util.AyaTranslations["OK"];
}
private void btnOK_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.OK;
Close();
}
}
}