소스 검색

changed IP + added suggestion for Chatting doctor-side

Bart Reedijk 10 년 전
부모
커밋
fc035bf915
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 0
      Proftaak Remote Healthcare/FietsClientV2/Forms/DoctorForm.cs
  2. 1 1
      Proftaak Remote Healthcare/FietsClientV2/TCPConnection.cs

+ 3 - 0
Proftaak Remote Healthcare/FietsClientV2/Forms/DoctorForm.cs

@@ -59,6 +59,9 @@ namespace FietsClient
 
                 doctorModel.tcpConnection.SendChatMessage(data);
             }
+
+            // selecteer active patient:
+            string activePatient = doctorTabControl.SelectedTab.Name;
         }
 
         public void AddSessionToTabcontrol(string patientID)

+ 1 - 1
Proftaak Remote Healthcare/FietsClientV2/TCPConnection.cs

@@ -46,7 +46,7 @@ namespace FietsClient
         {
                 try
                 {
-                    client.Connect("127.0.0.1", 1288);
+                    client.Connect("brdk.nl", 1288);
 
                     // create streams
                     serverStream = client.GetStream();