using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Stone.WinModule.BasicData { public partial class frmProdnoRule1 : Stone.WinModule.BasicData.frmBaseMain { public frmProdnoRule1() { InitializeComponent(); this.tlbInput.Visible = false; } private void frmProdnoRule1_Load(object sender, EventArgs e) { } public override void Search(string code) { base.Search(code); strWhere += $" or [cartype] like '%{code}%'"; } } }