본문 바로가기
  • Seizure But Okay Developer

전체 글241

C# LINQ 사용법 정리 LINQ Select 메서드 사용법https://ibocon.tistory.com/97https://itiformation.tistory.com/entry/LINQ%EC%9D%98-Select-Where%EB%A9%94%EC%84%9C%EB%93%9C-%EC%82%AC%EC%9A%A9%EB%B2%95 SelectTokens 사용해서 json 내에 특정 키 존재 여부 파악방법https://stackoverflow.com/questions/52177548/how-to-check-if-a-nested-path-exists-in-json-object-for-c 2024. 8. 29.
Oracle 관련 자료 정리 pivot 사용법https://dololak.tistory.com/811https://lee-mandu.tistory.com/481#google_vignette 다수의 row들 테이블에 insert 하기https://www.w3schools.com/sql/sql_insert_into_select.asp 특정 문자열 포함 여부 확인https://gent.tistory.com/423 2024. 8. 29.
C# devexpress 관련 자료 정리 DataTable 클래스에 insertAt 메소드 사용법https://gent.tistory.com/316https://stackoverflow.com/questions/20636398/add-data-row-to-datatable-at-predefined-index LINQ 사용해서 index 값 가져오기https://stackoverflow.com/questions/2471588/how-to-get-index-using-linq devexpress gridlookupedit 기본값 설정법https://supportcenter.devexpress.com/ticket/details/t395350/set-default-value-in-gridlookupedit 셀 값이 특정 셀값과 비교했을 때 다른 경우 .. 2024. 8. 29.
C# ASP.NET 관련 자료 정리 쿠키 지우기 위한 방법https://stackoverflow.com/questions/6635349/how-to-delete-cookies-on-an-asp-net-website c# asp에서 eventagrs 객체를 통해 dropdown value 가져오는 방법https://stackoverflow.com/questions/51753456/how-to-get-selected-value-of-item-from-dropdownlist-inside-formview dropdownList 태그 첫번째 아이템 클릭 시 SelectedIndexChanged 이벤트 발생안할 경우https://stackoverflow.com/questions/8699163/first-item-in-dropdownlist-doesn.. 2024. 8. 29.
MSSQL 로 HTTP 통신하기 MSSQL 로 HTTP 통신하기https://dev-gilgilit.tistory.com/entry/MSSql%EB%A1%9C-HTTP-%ED%86%B5%EC%8B%A0%ED%95%98%EA%B8%B0-API-%EA%B2%B0%EA%B3%BC-%EB%B0%9B%EC%95%84%EC%98%A4%EA%B8%B0 HTTP 통신하기 위해 발생되는 오류 해결방법- 구성 옵션 'Ole Automation Procedures'이(가) 없거나 고급 옵션입니다.https://kwange.tistory.com/169 2024. 7. 29.
C# 관련 자료 모음 몇 분마다 메소드 재 실행하는 방법private void OO_Load(object sender, EventArgs e) { ... timer1.Interval = 60000 * 5; // 5분 간격으로 timer1_Tick 수행 timer1.Tick += new EventHandler(timer1_Tick); timer1.Start(); } private void timer1_Tick(object sender, EventArgs e) { if (this.ContainsFocus) { your_method(nul.. 2024. 7. 29.
Devexpress 관련 자료 정리 chart update 메소드 관련 설명https://www.codeproject.com/Questions/558555/RefreshingplusaplusChartplusinplusC-23 dateedit 컴포넌트 월만 표시https://m.blog.naver.com/dnjswls23/222616105388 chart 범례 구성방법https://docs.devexpress.com/WindowsForms/5884/controls-and-libraries/chart-control/legends/legends-alignment-and-layouthttps://docs.devexpress.com/CoreLibraries/DevExpress.XtraCharts.LegendBase.AlignmentHorizonta.. 2024. 7. 29.
이벤트 객체 임의로 만들기 이벤트 객체 종류https://dom.spec.whatwg.org/#dom-document-createevent 이벤트 객체 프로퍼티 설정 방법https://stackoverflow.com/questions/27108094/how-to-set-target-property-when-simulating-mouseclick-in-javascript 2024. 7. 15.
C# asp 메일 보내기 관련 자료 C# asp 에서 메일 보내는 기능을 아래 자료 참고하여 만듬. https://asp.net-tutorials.com/misc/sending-mails/#google_vignettehttps://www.c-sharpcorner.com/article/send-mail-from-asp-net-website/ 근데 메일 본문에 iframe 으로 pdf 를 첨부하려니까, https 오류가 생김 (메일을 보낼때는 SSL 통신 허용을 false 로 하고 보냄, 그러나 메일을 받는 쪽은 https를 사용하므로 'An existing connection was forcibly closed by the remote host' 오류가 계속 생김. https://stackoverflow.com/questions/258203.. 2024. 7. 15.