본문 바로가기

IT Study60

다이어그램 그리기 - diagrams.net 설치없이 웹에서 순서도, 클래스 다이어그램, UML 등 그릴 수 있는 도구 아래의 두 사이트는 동일한 사이트이다. https://www.diagrams.net/ Diagram Software and Flowchart Maker Security-first diagramming for teams. Bring your storage to our online tool, or go max privacy with the desktop app. No login or registration required. www.diagrams.net https://draw.io Flowchart Maker & Online Diagram Software Flowchart Maker and Online Diagram Software .. 2021. 11. 11.
WinMerge 설치 및 사용법 기업에서도 무료로 사용할 수 있는 폴더 및 파일 비교 툴 하나를 소개해볼게요. 프로그램을 빌드 후 exe파일이나 dll파일 이외에도 빌드 되지 않는 xml파일이나 json파일 또는 html css js처럼 빌드 과정이 없는 파일들이 배포 버전에서 무엇이 달라졌는지 한눈에 파악이 잘 안되는데 WinMerge를 사용하면 어떤 파일이 변경되었는지 어디서 변경이 일어났는지 등을 파악 할 수 있다. 설치 : https://winmerge.org/ WinMerge - You will see the difference… What is WinMerge? WinMerge is an Open Source differencing and merging tool for Windows. WinMerge can compare bo.. 2021. 10. 31.
[Oracle] ORA-12638 신용검색에 실패했습니다. 원인: 오라클 설치 시 Admin 권한으로 설치하지 않아 발생. 해결법: 오라클 설치 경로의 sqlnet.ora 파일을 열어 아래의 구문을 주석 처리 저의 파일 경로는 D:\Oracle\product\12.1.0\dbhome_1\NETWORK\ADMIN\sqlnet.ora 입니다. # sqlnet.ora Network Configuration File: PATH SOMEWHERE # Generated by Oracle configuration tools. # This file is actually generated by netca. But if customers choose to # install "Software Only", this file wont exist and without the native.. 2021. 6. 23.
[Oracle] 전체 테이블과 컬럼 조회 테이블명 내용 ALL_TABLES 로그인 된 계정의 권한으로 접근할 수 있는 모든 테이블 정보 USER_TABLES 로그인 된 계정이 소유한 모든 테이블 정보 DBA_TABLES 데이터베이스 내의 모든 테이블 정보 ALL_TAB_COLUMNS 로그인 된 계정의 권한으로 접근할 수 있는 모든 컬럼 정보 USER_TAB_COLUMNS 로그인 된 계정이 소유한 모든 컬럼 정보 DBA_TAB_COLUMNS 데이터베이스 내의 모든 컬럼 정보 2021. 6. 23.
[C#][.Net WinForm] DateTimePicker 디버그 중 프로그램 응답 없음 VS2010에서 WinForm 프로그램 개발중 DateTimePicker의 ValueChanged 이벤트에 중단점을 걸었는데.. Hit하면 VS와 WinFormApp 둘 다 응답없음이 뜨는 이슈를 겪었다. https://developercommunity.visualstudio.com/t/debugger-crashes-on-datetimechanged-event/218801 Debugger crashes on DateTimeChanged event The strange thing is that VS crashes/becomes unresponsive before you can do anything in the debugger. So VS stops at the breakpoint and waits for .. 2021. 6. 2.
[C#] Null이 아니라 EventArgs.Empty를 사용하는 이유? 코드를 쓰면서 밑의 두 가지 모두의 코드를 많이 접했는데 sender object와 event argument가 필요 없는 상황에서 이벤트 처리 메서드를 일반적으로 사용할 때 어떤 Param을 넘겨야 하고 어떤 차이가 있는걸까? protected virtual OnSomethingHappened() { this.SomethingHappened(this, EventArgs.Empty); } protected virtual OnSomethingHappened() { this.SomethingHappened(null, null); } 그에 대한 답은 스택 오버플로우에 정리 되어있었다. Null을 전달하고 e로 무언가를 시도했을 때 발생하는 잠재적인 Null 참조 예외를 피하기 위함. https://stacko.. 2021. 5. 27.