개정판 53393bae
Converter
- Converter Searview 잘못된 Return값 제외
Viewer
- CloudControl, rectCloud, Textcontrol, ArrowTextControl CloudArcDepth 0.8로 고정
- Save, Load시 ArcLength 바인딩 되도록 수정
- 권한이 없을 경우 단축키 권한 제외(Ctrl + A, C, V)
- License 체크시 Member테이블에 없을 경우 등록된 사용자가 아닙니다 후 종료 되도록 설정
FinalItem
- CloudControl, rectCloud ArcLength 받아서 그려주도록 변경
KCOM/Services/BaseServices.cs | ||
---|---|---|
926 | 926 |
} |
927 | 927 |
else |
928 | 928 |
{ |
929 |
if (task.Result == "2")
|
|
929 |
switch(task.Result)
|
|
930 | 930 |
{ |
931 |
MessageBox.Show("권한이 없습니다."); |
|
932 |
System.Diagnostics.Process.GetCurrentProcess().Kill(); |
|
931 |
case "2": |
|
932 |
{ |
|
933 |
MessageBox.Show("권한이 없습니다."); |
|
934 |
System.Diagnostics.Process.GetCurrentProcess().Kill(); |
|
935 |
} |
|
936 |
break; |
|
937 |
case "404": |
|
938 |
{ |
|
939 |
MessageBox.Show("등록된 사용자가 아닙니다."); |
|
940 |
System.Diagnostics.Process.GetCurrentProcess().Kill(); |
|
941 |
} |
|
942 |
break; |
|
933 | 943 |
} |
934 |
|
|
935 |
Console.WriteLine(task.Result); |
|
936 | 944 |
} |
937 | 945 |
}); |
938 | 946 |
|
내보내기 Unified diff