摘要:
public Form1(){ InitializeComponent(); bindingNavigator1.Items.Add( new ToolStripDateTimePicker());}public class ToolStripDateTimePicker : ToolStripControlHost { public ToolStripDateTimePicker() : bas... 阅读全文
摘要:
private void dgvKBRollUp_RowsRemoved(object sender, DataGridViewRowsRemovedEventArgs e) { if (dgvKBRollUp.Rows.Count != 0) { for (int i = 0; i < e.RowCount; i++) { this.dgvKBRollUp.Rows[e.RowIndex ... 阅读全文
摘要:
《转载》自http://www.cnblogs.com/sundyy/archive/2008/01/19/1045319.html一、 需求的产生很多时候,需要根据年月或日期来检索数据。在我的数据库中,如果只需要以月为单位,我一般按照200801这样的格式(yyyyMM)保存为int类型。在做数据检索时,是根据工具栏中的两个ToolStripComboBox(一个年,一个月)选择的数据合并成一个... 阅读全文