示例#1
0
 // EOS 연결 종료
 public void DisconnectAllEOSData()
 {
     FileLog.PrintF("DisconnectAllEOSData");
     for (int i = _scrNum; i >= 5000; i--)
     {
         axKHOpenAPI.DisconnectRealData(i.ToString());
     }
     _scrNum = 5000;
     axKHOpenAPI.CommTerminate();
 }
示例#2
0
 /// <summary>
 /// [2]설명 OpenAPI의 서버 접속을 해제한다.
 ///비고 통신 연결 상태는 GetConnectState 메소드로 알 수 있다.
 /// </summary>
 public void CommTerminate()
 {
     axKHOpenAPI.CommTerminate();
     FileLog.PrintF("CommTerminate()");
 }
示例#3
0
 public void LogoutClick(object sender, EventArgs e)
 {
     axKHOpenAPI1.CommTerminate();
     control.Print("로그아웃");
 }