This commit is contained in:
32
AyaNovaQBI/SetQBImportServiceRateAccounts.cs
Normal file
32
AyaNovaQBI/SetQBImportServiceRateAccounts.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
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 SetQBImportServiceRateAccounts : Form
|
||||
{
|
||||
public SetQBImportServiceRateAccounts()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void SetQBImportServiceRateAccounts_Load(object sender, EventArgs e)
|
||||
{
|
||||
btnCancel.Text = util.AyaTranslations["Cancel"];
|
||||
btnOK.Text = util.AyaTranslations["OK"];
|
||||
|
||||
cbIncomeAccount.DisplayMember = "FullName";
|
||||
cbIncomeAccount.ValueMember = "ID";
|
||||
cbIncomeAccount.DataSource = util.QBAccounts;
|
||||
if (!string.IsNullOrEmpty(util.QDat.QBServiceIncomeAccountRef))
|
||||
cbIncomeAccount.SelectedValue = util.QDat.QBServiceIncomeAccountRef;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user