28 lines
719 B
C#
28 lines
719 B
C#
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;
|
|
}
|
|
}
|
|
}
|