public override void UpdateControls(GenerateOptionsSQL options)
        {
            base.UpdateControls(options);

            numRecordsPerInsert.Value    = options.RecordsPerInsert;
            chkIncludeFieldNames.Checked = options.IncludeFieldNames;
            txtTableName.Text            = options.Table;
        }
 public UserControlOutputSQL(GenerateOptionsSQL options)
     : base(options)
 {
     InitializeComponent();
 }