This commit is contained in:
2018-06-29 19:47:36 +00:00
commit be7f501333
3769 changed files with 1425961 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace AyaNova.PlugIn.ImportExportCSV
{
public partial class ImportUpdateOptions : Form
{
public ImportUpdateOptions()
{
InitializeComponent();
}
private void ImportUpdateOptions_Load(object sender, EventArgs e)
{
this.Icon = Resource.ImportExportCSV16icon;
this.btnOK.Image = (System.Drawing.Image)Util.AyaRes.GetObject("OK24");
pgImportOpts.SelectedObject = Util.IEData;
}
}
}