본문 바로가기
  • Seizure But Okay Developer

BackEnd55

C# 관련 자료 정리 window form button border 지우기https://stackoverflow.com/questions/8244827/how-would-i-change-the-border-color-of-a-button '이 행은 이미 다른 테이블에 속해 있습니다.' 오류 해결https://blog.naver.com/gwise/221028807542 datarows to datatablehttps://snorlaxh.tistory.com/34 add datarow to datarow array c#https://www.vbforums.com/showthread.php?755177-How-do-I-add-a-row-to-a-datarow-RESOLVED 2024. 10. 17.
SQL 관련 자료 정리 oracle table lock 조회https://m.blog.naver.com/qowndyd/220997502798https://boya.tistory.com/257https://darusamu.tistory.com/57 2024. 10. 17.
오라클 관련 자료 정 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.