private void createProForm1_Load(object sender, EventArgs e) { this.gameTime = dateTimePicker1.Value; //加载比赛类别信息 this.comboBox1.Items.Clear(); string tableName = "system_data_table"; string colName = "system_data_name"; string value = "赛事名称"; int colNum = 2; DBO dbo = new DBO(); dbo.Open(); string mge = dbo.FindCol(tableName, colName, colNum, value); string[] splitChar = { "," }; string[] result = mge.Split(splitChar, StringSplitOptions.None); for (int i = 0; i < result.Length; i++) { this.comboBox1.Items.Add(result[i]); } //MessageBox.Show(mge); }