Query_ExeProgress.cs 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. using DevComponents.DotNetBar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Drawing.Drawing2D;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Windows.Forms;
  11. using UAS_MES_NEW.DataOperate;
  12. using UAS_MES_NEW.Entity;
  13. using UAS_MES_NEW.PublicMethod;
  14. namespace UAS_MES_NEW.Query
  15. {
  16. public partial class Query_ExeProgress : Form
  17. {
  18. DataHelper dh;
  19. LogStringBuilder sql = new LogStringBuilder();
  20. //经过的步骤
  21. string PastStep = "";
  22. //经过的步骤
  23. string nextStepCode = "";
  24. //序列号对应抽检批
  25. string checkno = "";
  26. //拆分后的经过的步骤
  27. Dictionary<int, string> Step;
  28. Dictionary<int, string> StepName;
  29. List<Brush> PaintColor = new List<Brush>();
  30. //屏幕高度
  31. int ScreenWidth;
  32. //屏幕宽度
  33. int ScreenHeight;
  34. DataTable dt;
  35. DataTable ms_id;//记录ms_id
  36. DataTable ListA;//记录数据的当前序列号和之前序列号
  37. AutoSizeFormClass asc = new AutoSizeFormClass();
  38. public Query_ExeProgress()
  39. {
  40. InitializeComponent();
  41. }
  42. private void Query_ExeProgress_Load(object sender, EventArgs e)
  43. {
  44. dh = SystemInf.dh;
  45. ScreenWidth = this.Width;
  46. ScreenHeight = this.Height;
  47. asc.controllInitializeSize(this);
  48. sn_code.Focus();
  49. }
  50. private void Query_ExeProgress_SizeChanged(object sender, EventArgs e)
  51. {
  52. //asc.controlAutoSize(this);
  53. }
  54. private void sn_code_KeyDown(object sender, KeyEventArgs e)
  55. {
  56. if (e.KeyCode == Keys.Enter)
  57. {
  58. dt = (DataTable)dh.ExecuteSql("select ms_sncode from makeserial where ms_imei1='" + sn_code.Text + "' order by ms_id desc", "select");
  59. if (dt.Rows.Count > 0)
  60. {
  61. sn_code.Text = dt.Rows[0]["ms_sncode"].ToString();
  62. }
  63. else
  64. {
  65. dt = (DataTable)dh.ExecuteSql("select ms_sncode from makeserial where ms_imei2='" + sn_code.Text + "' order by ms_id desc", "select");
  66. if (dt.Rows.Count > 0)
  67. {
  68. sn_code.Text = dt.Rows[0]["ms_sncode"].ToString();
  69. }
  70. else
  71. {
  72. dt = (DataTable)dh.ExecuteSql("select mil_sncode from makeimeilist where mil_imei1='" + sn_code.Text + "' order by mil_id desc", "select");
  73. if (dt.Rows.Count > 0)
  74. {
  75. sn_code.Text = dt.Rows[0]["mil_sncode"].ToString();
  76. }
  77. else
  78. {
  79. dt = (DataTable)dh.ExecuteSql("select mil_sncode from makeimeilist where mil_imei2='" + sn_code.Text + "' order by mil_id desc", "select");
  80. if (dt.Rows.Count > 0)
  81. {
  82. sn_code.Text = dt.Rows[0]["mil_sncode"].ToString();
  83. }
  84. }
  85. }
  86. }
  87. ms_id = (DataTable)dh.ExecuteSql("select beforesn,sn from makesnrelation where beforesn='" + sn_code.Text + "' or sn='" + sn_code.Text + "'", "select");
  88. if (ms_id.Rows.Count > 0)
  89. {
  90. //说明有过转号
  91. ms_id = (DataTable)dh.ExecuteSql("select ms_id,ms_makecode,ms_firstsn,ms_checkno from makeserial where ms_sncode='" + ms_id.Rows[0]["beforesn"].ToString() + "' or ms_sncode='" + ms_id.Rows[0]["sn"].ToString() + "' order by ms_id", "select");
  92. }
  93. else
  94. {
  95. //没有过转号
  96. ms_id = (DataTable)dh.ExecuteSql("select ms_id,ms_makecode,ms_firstsn,ms_checkno from makeserial where ms_sncode='" + sn_code.Text + "' order by ms_id", "select");
  97. }
  98. if (ms_id.Rows.Count == 0)
  99. {
  100. //无值则提示
  101. MessageBox.Show("序列号" + sn_code.Text + "不存在");
  102. return;
  103. }
  104. StringBuilder ms_ids = new StringBuilder();//存所有的ms_id
  105. //设置界面工单号
  106. ma_code.Text = ms_id.Rows[ms_id.Rows.Count - 1]["ms_makecode"].ToString();
  107. ms_checkno.Text = ms_id.Rows[ms_id.Rows.Count - 1]["ms_checkno"].ToString();
  108. int idCount = ms_id.Rows.Count;
  109. for (int i = 0; i < idCount; i++)
  110. {
  111. ms_ids.Append("'" + ms_id.Rows[i]["ms_id"].ToString() + "',");
  112. }
  113. ListA = (DataTable)dh.ExecuteSql("select ms_beforesn,ms_sncode,ms_firstsn,ms_makecode from makeserial where ms_id in (" + ms_ids.ToString().Substring(0, ms_ids.ToString().Length - 1) + ")", "select");
  114. dt = (DataTable)dh.ExecuteSql("select ms_status,ms_nextstepcode,ms_paststep,ms_stepcode,ms_checkno,NVL(ms_ifrework, 0) ms_ifrework,NVL(ms_reworkstatus, 0) ms_reworkstatus from makeserial where ms_id in (" + ms_ids.ToString().Substring(0, ms_ids.ToString().Length - 1) + ") order by ms_id", "select");
  115. if (dt.Rows.Count > 0)
  116. {
  117. if (Step != null && Step.Count > 0)
  118. {
  119. Step.Clear();
  120. SerialPanel.Controls.Clear();
  121. PaintColor.Clear();
  122. }
  123. string ifRework = dt.Rows[idCount - 1]["ms_ifrework"].ToString();
  124. //执行过的步骤
  125. PastStep = dt.Rows[idCount - 1]["ms_paststep"].ToString();
  126. //下一步骤
  127. nextStepCode = dt.Rows[idCount - 1]["ms_nextstepcode"].ToString();
  128. //序列号所属抽检批
  129. checkno = dt.Rows[idCount - 1]["ms_checkno"].ToString();
  130. //如果为不良的时候
  131. string BadStep = "";
  132. string RejectStep = "";
  133. string currentStep = "";
  134. //先判断是否是返工的
  135. if (ifRework != "0")
  136. {
  137. //是返工的
  138. if (dt.Rows[idCount - 1]["ms_reworkstatus"].ToString() == "3")
  139. {
  140. BadStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  141. }
  142. else if (dt.Rows[idCount - 1]["ms_reworkstatus"].ToString() == "4")
  143. {
  144. RejectStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  145. }
  146. }
  147. else
  148. {
  149. //不是返工的
  150. if (dt.Rows[idCount - 1]["ms_status"].ToString() == "3")
  151. {
  152. BadStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  153. }
  154. else if (dt.Rows[idCount - 1]["ms_status"].ToString() == "4")
  155. {
  156. RejectStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  157. }
  158. }
  159. currentStep = dt.Rows[idCount - 1]["ms_stepcode"].ToString();
  160. bool flag = false;//记录返工单开始就是不良的情况
  161. //如果只有一个单
  162. if (idCount == 1)
  163. {
  164. //添加开始节点绿色,除了返工单
  165. if (BadStep == "" && ((dt.Rows[idCount - 1]["ms_status"].ToString() == "3" && ifRework == "0") || (dt.Rows[idCount - 1]["ms_reworkstatus"].ToString() == "3" && ifRework == "-1")))
  166. {
  167. PaintColor.Add(Brushes.Red);
  168. }
  169. else
  170. {
  171. PaintColor.Add(Brushes.Green);
  172. }
  173. }
  174. else//有至少两个工单,之前的工单肯定是已经完工的
  175. {
  176. PaintColor.Add(Brushes.Green);
  177. if (BadStep == "" && ((dt.Rows[idCount - 1]["ms_status"].ToString() == "3" && ifRework == "0") || (dt.Rows[idCount - 1]["ms_reworkstatus"].ToString() == "3" && ifRework == "-1")))
  178. {
  179. //单独记录返工前oqc判不良
  180. flag = true;
  181. }
  182. }
  183. //查询执行过的步骤
  184. sql.Clear();
  185. sql.Append("select CD_DETNO,CD_STEPCODE,cd_ifoqc,ms_makecode,ms_id,cd_stepname from craft left join craftdetail on cd_crid = cr_id left join makeserial ");
  186. sql.Append("on ms_craftcode=cr_code and ms_prodcode=cr_prodcode where ms_id in (" + ms_ids.ToString().Substring(0, ms_ids.ToString().Length - 1) + ") order by ms_id,cd_detno");
  187. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  188. Step = new Dictionary<int, string>();
  189. StepName = new Dictionary<int, string>();
  190. for (int i = 0; i < dt.Rows.Count + 2; i++)
  191. {
  192. if (i == 0)
  193. {
  194. Step.Add(i, "开始");
  195. StepName.Add(i, "开始");
  196. }
  197. else if (i == dt.Rows.Count + 1)
  198. {
  199. Step.Add(i, "结束");
  200. StepName.Add(i, "开始");
  201. }
  202. else
  203. {
  204. Step.Add(i, dt.Rows[i - 1]["CD_STEPCODE"].ToString());
  205. StepName.Add(i, dt.Rows[i - 1]["cd_stepname"].ToString());
  206. }
  207. }
  208. //添加中间节点
  209. bool passed = true;
  210. int index = 0;
  211. for (int i = 0; i < dt.Rows.Count; i++)
  212. {
  213. //正在生产的途程才算
  214. if (dt.Rows[i]["ms_id"].ToString() == ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"].ToString())
  215. {
  216. if (nextStepCode == dt.Rows[i]["CD_STEPCODE"].ToString())
  217. {
  218. index = i;
  219. }
  220. }
  221. }
  222. for (int i = 0; i < dt.Rows.Count; i++)
  223. {
  224. //只考虑正在生产的途程,之前工单的途程工序必定为绿色完工
  225. if (dt.Rows[i]["ms_id"].ToString() == ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"].ToString())
  226. {
  227. ////下一步不在途程中,不良或者报废或者完工
  228. if (nextStepCode == "" || nextStepCode == " ")
  229. {
  230. //返工单
  231. if (currentStep == "")
  232. {
  233. passed = false;
  234. }
  235. //找到不良步骤
  236. if (BadStep == dt.Rows[i]["CD_STEPCODE"].ToString())
  237. {
  238. PaintColor.Add(Brushes.Red);
  239. //是不良品,后面就不执行
  240. passed = false;
  241. }
  242. //找到报废步骤
  243. else if (PastStep.Contains(dt.Rows[i]["CD_STEPCODE"].ToString() + "," + RejectStep) && RejectStep != "")
  244. {
  245. PaintColor.Add(Brushes.Black);
  246. //是报废品,后面就不执行
  247. passed = false;
  248. }
  249. else
  250. {
  251. //通过加绿色
  252. if (PastStep.Contains(dt.Rows[i]["CD_STEPCODE"].ToString()))
  253. {
  254. PaintColor.Add(Brushes.Green);
  255. }
  256. //不通过加白色
  257. else
  258. {
  259. PaintColor.Add(Brushes.White);
  260. }
  261. }
  262. }
  263. ////序列号下一步不为空
  264. else
  265. {
  266. /////SN下一步是否在途程中,是则标记
  267. //找到下一步
  268. if (i < index)
  269. {
  270. //已执行
  271. //判断是否为OQC工序
  272. //if (dt.Rows[i]["cd_ifoqc"].ToString() == "-1")
  273. //{
  274. // string oqcpass = dh.getFieldDataByCondition("oqcbatch", "ob_status", "ob_checkno = '" + checkno + "'").ToString();
  275. // if (oqcpass == "OK")
  276. // {
  277. // PaintColor.Add(Brushes.Green);
  278. // }
  279. // else
  280. // {
  281. // PaintColor.Add(Brushes.White);
  282. // }
  283. //}
  284. //else
  285. PaintColor.Add(Brushes.Green);
  286. }
  287. else
  288. {
  289. //未执行
  290. PaintColor.Add(Brushes.White);
  291. }
  292. }
  293. }
  294. else
  295. {
  296. //就是之前生产的途程,为绿色,除了返工
  297. if (flag && (dt.Rows[i + 1]["ms_id"].ToString() == ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"].ToString()))
  298. {
  299. PaintColor.Add(Brushes.Red);
  300. }
  301. else
  302. {
  303. PaintColor.Add(Brushes.Green);
  304. }
  305. }
  306. }
  307. if (ifRework != "0")
  308. {
  309. //完工添加绿色,未完工添加白色
  310. if (dh.CheckExist("Makeserial", "ms_id='" + ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"] + "' and ms_reworkstatus='2'"))
  311. PaintColor.Add(Brushes.Green);
  312. else
  313. PaintColor.Add(Brushes.White);
  314. }
  315. else
  316. {
  317. //完工添加绿色,未完工添加白色
  318. if (dh.CheckExist("Makeserial", "ms_id='" + ms_id.Rows[ms_id.Rows.Count - 1]["ms_id"] + "' and ms_status='2'"))
  319. PaintColor.Add(Brushes.Green);
  320. else
  321. PaintColor.Add(Brushes.White);
  322. }
  323. Refresh();
  324. SerialPanel.Refresh();
  325. StringBuilder mp_sncodes = new StringBuilder();
  326. StringBuilder makecodes = new StringBuilder();
  327. //拼接序列号的和工单号的
  328. for (int i = 0; i < ListA.Rows.Count; i++)
  329. {
  330. //sql mp_sncode
  331. mp_sncodes.Append("'" + ListA.Rows[i]["ms_sncode"].ToString() + "'," + (ListA.Rows[i]["ms_firstsn"].ToString() == "" ? "" : (" '" + ListA.Rows[i]["ms_firstsn"].ToString() + "',")));
  332. //sql ma_code
  333. makecodes.Append("'" + ListA.Rows[i]["ms_makecode"].ToString() + "',");
  334. }
  335. sql.Clear();
  336. sql.Append("select MBR_BRNAME||' '||MBR_SOLUTIONNAME||' '|| MBR_REMARK MBR_BRNAME,MP_RESULT,MP_SNCHECKNO,mp_makecode,ma_prodcode,std_class,sc_linecode,ma_craftcode,mp_sourcecode,mp_sncode,");
  337. sql.Append("MB_BADREMARK mb_badcode,to_char(mp_indate,'yyyy-mm-dd hh24:mi:ss')mp_indate,mp_inman,em_name from makeprocess left join make on mp_makecode=ma_code left join employee on mp_inman = em_code left join source on ");
  338. sql.Append("mp_sourcecode=sc_code left join STEPTESTDETAIL on std_sn=mp_sncode and to_char(mp_indate,'yyyy-mm-dd hh24:mi:ss')=to_char(STD_INDATE,'yyyy-mm-dd hh24:mi:ss')" +
  339. "left join (select max(mb_id)mb_id,wm_concat(distinct mb_badcode||' '||MB_BADNAME)||" +
  340. "' '||wm_concat(distinct MB_BADREMARK) MB_BADREMARK,mb_sncode,to_char(mb_indate,'yyyy-mm-dd hh24:mi:ss')mb_indate from makebad group by mb_sncode,to_char(mb_indate,'yyyy-mm-dd hh24:mi:ss') ) on mb_sncode=mp_sncode and to_char(mp_indate,'yyyy-mm-dd hh24:mi:ss')=mb_indate " +
  341. "left join MAKEBADREASON on mbr_mbid=mb_id where mp_sncode in (" + mp_sncodes.ToString().Substring(0, mp_sncodes.ToString().Length - 1) + ") and ma_code in (" + makecodes.ToString().Substring(0, makecodes.ToString().Length - 1) + ") order by mp_indate");
  342. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  343. BaseUtil.FillDgvWithDataTable(CraftInfDgv, dt);
  344. sql.Clear();
  345. sql.Append("select cm_barcode,cm_fsoncode,cm_sncode,cm_indate,cm_inman," +
  346. "case when cm_status=0 then '上线' else '已拆解' end cm_status from craftmaterial where cm_sncode='" + sn_code.Text + "' and cm_makecode='" + ma_code.Text + "'");
  347. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  348. if (dt.Rows.Count > 0)
  349. {
  350. BaseUtil.FillDgvWithDataTable(CraftMaterial, dt);
  351. }
  352. else
  353. {
  354. sql.Clear();
  355. sql.Append("select cm_barcode,cm_fsoncode,cm_sncode,cm_indate,cm_inman," +
  356. "case when cm_status=0 then '上线' else '已拆解' end cm_status from craftmaterial where cm_barcode='" + sn_code.Text + "'");
  357. dt = (DataTable)dh.ExecuteSql(sql.GetString(), "select");
  358. BaseUtil.FillDgvWithDataTable(CraftMaterial, dt);
  359. }
  360. }
  361. else MessageBox.Show("序列号" + sn_code.Text + "不存在");
  362. }
  363. }
  364. private void SerialPanel_Paint(object sender, PaintEventArgs e)
  365. {
  366. if (Step != null)
  367. {
  368. //设置一行五个展示数量
  369. int RectangleCountEachRow = 5;
  370. int x = 40;
  371. int y = SerialPanel.Height / 10;
  372. int CurrentIndex = 0;
  373. //根据记录的数量判断行数
  374. int RowCount = (Step.Count % RectangleCountEachRow) == 0 ? (Step.Count / RectangleCountEachRow) : (Step.Count / RectangleCountEachRow) + 1;
  375. //每行的循环
  376. for (int i = 1; i <= RowCount; i++)
  377. {
  378. for (int j = CurrentIndex; j < RectangleCountEachRow * i; j++)
  379. {
  380. //创建画板
  381. Graphics g = e.Graphics;
  382. //途程节点的矩形
  383. Rectangle r;
  384. if (Step[j].Contains("开始") || Step[j].Contains("结束"))
  385. {
  386. r = new Rectangle(0, 0, 40, 40);
  387. }
  388. else
  389. r = new Rectangle();
  390. r.Width = SerialPanel.Width / 10;
  391. r.Height = SerialPanel.Height / 8;
  392. //画箭头的Pen
  393. Pen p = new Pen(Color.CadetBlue, 15);
  394. p.StartCap = LineCap.Round;
  395. p.EndCap = LineCap.ArrowAnchor;
  396. //方块内的信息
  397. Label Param = new Label();
  398. Param.Text = j + " " + StepName[j];
  399. Param.Name = j + Step[j] + "_label";
  400. Param.AutoSize = true;
  401. Param.Margin = new System.Windows.Forms.Padding(0, 0, 0, 0);
  402. Param.Anchor = AnchorStyles.Left;
  403. Param.Anchor = AnchorStyles.Top;
  404. //获取param的宽度和高度
  405. Graphics graphics = Graphics.FromHwnd(Param.Handle);
  406. SizeF size = graphics.MeasureString(Param.Text, Param.Font);
  407. //设定param文本框的位置
  408. //Param.Location = new Point(x + r.Width / 14 * RectangleCountEachRow, y + r.Height / 10 * 4);
  409. Param.Location = new Point(SerialPanel.AutoScrollPosition.X + x + (int)(r.Width - size.Width) / 2, SerialPanel.AutoScrollPosition.Y + y + (int)(r.Height - size.Height) / 2);
  410. graphics.Dispose();
  411. //如果在奇数行
  412. if (i % 2 != 0)
  413. {
  414. r.Location = new Point(SerialPanel.AutoScrollPosition.X + x, SerialPanel.AutoScrollPosition.Y + y);
  415. g.FillRectangle(PaintColor[j], r);
  416. //填充方块内的信息
  417. if (SerialPanel.Controls[Param.Name] == null)
  418. SerialPanel.Controls.Add(Param);
  419. if (j + 1 == Step.Count)
  420. break;
  421. //画箭头
  422. //如果是一行中的箭头
  423. if (j + 1 < RectangleCountEachRow * i)
  424. {
  425. g.DrawLine(p, SerialPanel.AutoScrollPosition.X + x + r.Width + 10, SerialPanel.AutoScrollPosition.Y + y + r.Height / 2, SerialPanel.AutoScrollPosition.X + x + ScreenWidth / (RectangleCountEachRow), SerialPanel.AutoScrollPosition.Y + y + r.Height / 2);
  426. x += ScreenWidth / RectangleCountEachRow;
  427. }
  428. //如果是行的最后一个的箭头
  429. else if (j + 1 == RectangleCountEachRow * i)
  430. {
  431. g.DrawLine(p, SerialPanel.AutoScrollPosition.X + x + r.Width / 2, SerialPanel.AutoScrollPosition.Y + y + r.Height + 10, SerialPanel.AutoScrollPosition.X + x + r.Width / 2, SerialPanel.AutoScrollPosition.Y + y + r.Height + r.Height);
  432. y = y + r.Height + r.Height;
  433. }
  434. }
  435. //如果在偶数行
  436. else
  437. {
  438. r.Location = new Point(SerialPanel.AutoScrollPosition.X + x, SerialPanel.AutoScrollPosition.Y + y);
  439. g.FillRectangle(PaintColor[j], r);
  440. //填充文字信息
  441. //存在这个名称的则不进行添加
  442. if (SerialPanel.Controls[Param.Name] == null)
  443. {
  444. SerialPanel.Controls.Add(Param);
  445. }
  446. //如果最后一个的画则直接Break,不用画箭头了
  447. if (j + 1 == Step.Count)
  448. {
  449. break;
  450. }
  451. //如果不是本行的最后一个画横向的箭头
  452. if (j + 1 < RectangleCountEachRow * i)
  453. {
  454. g.DrawLine(p, SerialPanel.AutoScrollPosition.X + (x - 10), SerialPanel.AutoScrollPosition.Y + (y + r.Height / 2), SerialPanel.AutoScrollPosition.X + (x - ScreenWidth / RectangleCountEachRow + r.Width), SerialPanel.AutoScrollPosition.Y + (y + r.Height / 2));
  455. x -= ScreenWidth / RectangleCountEachRow;
  456. }
  457. //如果是最后一个画纵向的箭头
  458. else if (j + 1 == RectangleCountEachRow * i)
  459. {
  460. g.DrawLine(p, SerialPanel.AutoScrollPosition.X + (x + r.Width / 2), SerialPanel.AutoScrollPosition.Y + (y + r.Height + 10), SerialPanel.AutoScrollPosition.X + (x + r.Width / 2), SerialPanel.AutoScrollPosition.Y + (y + r.Height + r.Height));
  461. y = y + r.Height + r.Height;
  462. }
  463. }
  464. CurrentIndex = CurrentIndex + 1;
  465. }
  466. }
  467. }
  468. }
  469. private void SerialPanel_Scroll(object sender, ScrollEventArgs e)
  470. {
  471. Graphics g = this.SerialPanel.CreateGraphics();
  472. g.Clear(this.BackColor);
  473. SerialPanel.Refresh();
  474. }
  475. private void TestFile_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  476. {
  477. }
  478. private void CraftInfDgv_CellContentClick(object sender, DataGridViewCellEventArgs e)
  479. {
  480. if (e.RowIndex > 0)
  481. {
  482. if (CraftInfDgv.Columns[e.ColumnIndex].Name.ToUpper() == "STD_CLASS")
  483. {
  484. if (CraftInfDgv.Rows[e.RowIndex].Cells["STD_CLASS"].Value != null)
  485. {
  486. System.Diagnostics.Process.Start(CraftInfDgv.Rows[e.RowIndex].Cells["STD_CLASS"].Value.ToString());
  487. }
  488. }
  489. }
  490. }
  491. }
  492. }