본문 바로가기
  • Seizure But Okay Developer

BackEnd53

오라클 관련 자료 정 oracle db 특정 내용 조회https://devlop.tistory.com/4 oracle package all source find but does not existhttps://stackoverflow.com/questions/251902/is-there-a-way-to-do-full-text-search-of-all-oracle-packages-and-procedures AS OF TIMESTAMPhttps://goddaehee.tistory.com/56https://gent.tistory.com/244 merge intohttps://gent.tistory.com/406 ora-28759https://stackoverflow.com/questions/26697841/oracle-error-o.. 2024. 9. 26.
C# 자료 정리 devexpress layoutcontrolitem devexpress middlehttps://supportcenter.devexpress.com/ticket/details/q427050/how-do-i-center-a-control-in-a-layoutcontrolitem devexpress 도넛 차트https://docs.devexpress.com/WindowsForms/5909/controls-and-libraries/chart-control/diagram/xy-diagram-3dhttps://supportcenter.devexpress.com/ticket/details/t848986/how-to-change-the-font-color-of-chart-title-at-run-timehttps://.. 2024. 9. 26.
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.
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.