You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
938 B
30 lines
938 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.ComponentModel;
|
||
|
using System.Data;
|
||
|
using System.Drawing;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace QMAPP.WinForm.Forms.PlanSearch
|
||
|
{
|
||
|
public partial class frmFISBreakConfirm : Form
|
||
|
{
|
||
|
public frmFISBreakConfirm()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
QMAPP.ServicesAgent.ServiceAgent agent = ClientContext.GetServiceAgent();
|
||
|
DataTable tblCodes = agent.InvokeServiceFunction<DataTable>(QMAPP.ServicesAgent.FrmPlaceManage.FrmPlaceBLL_GetWORKCENTERCODE.ToString());
|
||
|
cbWorkcenter.DataSource = tblCodes;
|
||
|
cbWorkcenter.DisplayMember = "WORKCENTER_NAME";
|
||
|
cbWorkcenter.ValueMember = "WORKCENTER_CODE";
|
||
|
}
|
||
|
|
||
|
private void frmFISBreakConfirm_Load(object sender, EventArgs e)
|
||
|
{
|
||
|
cbWorkcenter.SelectedValue = "BORADPASSY";
|
||
|
}
|
||
|
}
|
||
|
}
|