private void tmrMainView_Tick(object sender, EventArgs e) { try { tmrMainView.Enabled = false; if (this.PInfo.funOPCallCount() > 0) { subOPCallGet(); //OPCall Queue에 항목이 들어있으면 처리한다 } if (this.PInfo.funOPCallOverWriteCount() > 0) { subOPCallOverWriteGet(); } if (PInfo.ViewEventCount() > 0) { subProcViewEvent(); } } catch (Exception ex) { PInfo.subLog_Set(clsInfo.LogType.CIM, ex.ToString()); } tmrMainView.Enabled = true; }