Key switch 변경 불가시 Interlock message -> messageBox 로 변경
| | |
| | | { |
| | | if (_Parent._equip.Door_Opened) |
| | | { |
| | | Interlock_Manager.Add_Interlock_Msg("Key switch can't change.", "Door is opened"); |
| | | MessageBox.Show("Key switch can't change, Door is opened."); |
| | | //Interlock_Manager.Add_Interlock_Msg("Key switch can't change.", "Door is opened"); |
| | | return; |
| | | } |
| | | |
| | | if (_Parent._equip.equip_mode == En_Equipment_Mode.Auto && _Parent.sm.Get_Bit(Output_Memory_Address.Safety_Mode_SW_Unlock) == false) |
| | | { |
| | | Interlock_Manager.Add_Interlock_Msg("Key switch can't change.", "Equipment mode is Auto"); |
| | | MessageBox.Show("Key switch can't change, Equipment mode is Auto"); |
| | | //Interlock_Manager.Add_Interlock_Msg("Key switch can't change.", "Equipment mode is Auto"); |
| | | return; |
| | | } |
| | | |