티스토리 뷰
콤보박스를 마우스 클릭하면 바로 mysql 에 있는 값 불러오기
private void comboBox_weld_mat4_MouseClick(object sender, MouseEventArgs e)
{
this.comboBox_weld_mat4.Items.Clear();
cb_query.comboBox_Query("select * from tcm_data.mat4_name order by name asc ;", "name", this.comboBox_weld_mat4, 1);
}
private void comboBox_weld_mat3_MouseClick(object sender, MouseEventArgs e)
{
this.comboBox_weld_mat3.Items.Clear();
cb_query.comboBox_Query("select * from tcm_data.mat3_name order by name asc ;", "name", this.comboBox_weld_mat3, 1);
}
private void comboBox_weld_mat2_MouseClick(object sender, MouseEventArgs e)
{
this.comboBox_weld_mat2.Items.Clear();
cb_query.comboBox_Query("select * from tcm_data.mat2_name order by name asc ;", "name", this.comboBox_weld_mat2, 1);
}
private void combobox_weld_mat1_MouseClick(object sender, MouseEventArgs e)
{
this.combobox_weld_mat1.Items.Clear();
cb_query.comboBox_Query("select * from tcm_data.mat1_name order by name ;", "name", this.combobox_weld_mat1, 1);
}
'프로그래밍 > C#' 카테고리의 다른 글
mysql 그리드뷰 오프하지 않고 나오게하기 (0) | 2019.01.23 |
---|---|
Control에서 자동으로 TabPage 선택하는 방법 (0) | 2019.01.23 |
c# 윈도우 로그인 계정 얻기 (0) | 2019.01.22 |
C# TrackPopup 처리(마우스 우클릭시 메뉴처리) (0) | 2018.12.18 |
C# 마우스 드래그해서 여러개 콘트롤 선택하기 (3) | 2018.12.18 |