top of page
재창 신
운영자
더보기
게시판 게시물
재창 신
2025년 2월 28일
0
0
4
재창 신
2025년 2월 28일
In C#
https://helpcentral.componentone.com/NetHelp/SpreadNet8/ASP2/spweb-HeaderMulti.html
0
0
5
재창 신
2025년 2월 28일
In C#
https://blog.kkomzi.net/210/page/4?et_blog
/// <summary>
/// 스프레드 컬럼별 너비를 자동조절(헤더 라벨 고려)
/// 2010-11-12 By KKOMZI : Multi Row Header 고려
/// </summary>
/// <param name="fpSheet"></param>
/// <param name="pExtWidth">추가로 확장시킬 너비</param>
public static void SetResizeColALL(SheetView fpSheet, int pExtWidth = 10)
{
int _headerRowCount = fpSheet.ColumnHeader.RowCount;
fpSheet.RowCount += _headerRowCount;
int _tmpIndex = 0;
for (int rowIdx = 0; rowIdx < _headerRowCount; rowIdx++)
{
_tmpIndex = fpSheet.RowCount - rowIdx - 1;
fpSheet.Rows[_tmpIndex].CellType = new GeneralCellType();
for (int colIdx = 0; colIdx < fpSheet.ColumnCount; colIdx++)
{
// fpSheet.SetValue(_tmpIndex, colIdx, fpSheet.Columns[colIdx].Label);
fpSheet.SetValue(_tmpIndex, colIdx, fpSheet.ColumnHeader.Cells.Get(rowIdx, colIdx).Value);
}
}
for (int k = 0; k < fpSheet.Columns.Count; k++)
{
fpSheet.Columns[k].Width = 0;
fpSheet.Columns[k].Width = Math.Max(fpSheet.ColumnHeader.Columns[k].GetPreferredWidth(), fpSheet.Columns[k].GetPreferredWidth()) + pExtWidth;
// fpSheet.Columns[k].ColWidth = fpSheet.GetPreferredColumnWidth(k, true, true, true);
}
fpSheet.RowCount -= _headerRowCount;
}
0
0
4
재창 신
2025년 2월 28일
In C#
https://haebi.kr/entry/FpSpread-%EC%BD%94%EB%94%A9-%EC%B0%B8%EA%B3%A0%EC%9A%A9
https://haebi.kr/entry/FpSpread-%EC%BD%94%EB%94%A9-%EC%B0%B8%EA%B3%A0%EC%9A%A9
Creating a Header with Multiple Rows or Columns
https://helpcentral.componentone.com/NetHelp/SpreadNet6/ASP2/spweb-HeaderMulti.html
C-NET-spread-개발-시-유용한-코드-모음단축키-컬럼-로우-등
https://earscoming.tistory.com/entry/C-NET-spread-%EA%B0%9C%EB%B0%9C-%EC%8B%9C-%EC%9C%A0%EC%9A%A9%ED%95%9C-%EC%BD%94%EB%93%9C-%EB%AA%A8%EC%9D%8C%EB%8B%A8%EC%B6%95%ED%82%A4-%EC%BB%AC%EB%9F%BC-%EB%A1%9C%EC%9A%B0-%EB%93%B1#google_vignette
https://earscoming.tistory.com/entry/C-NET-spread-%EA%B0%9C%EB%B0%9C-%EC%8B%9C-%EC%9C%A0%EC%9A%A9%ED%95%9C-%EC%BD%94%EB%93%9C-%EB%AA%A8%EC%9D%8C%EB%8B%A8%EC%B6%95%ED%82%A4-%EC%BB%AC%EB%9F%BC-%EB%A1%9C%EC%9A%B0-%EB%93%B1#google_vignette
Column Header를 클릭했을 때 Sorting 시키려면 SetColumnAllowAutoSort 함수를 이용하면 된다.
출처: https://rea1man.tistory.com/entry/Farpoint-Spread-Column-Sort-시키기-SetColumnAllowAutoSort [Realman's World:티스토리]
spsGateDtlInfo.SetColumnAllowAutoSort(i, spsGateDtlInfo.ColumnCount, true);
0
0
6
재창 신
2025년 2월 28일
In C#
https://afsdzvcx123.tistory.com/entry/C-FarPoint-C-FarPoint-Spread-Sheet-%EC%BB%A8%ED%8A%B8%EB%A1%A4-Cell-Click-%EC%9D%B4%EB%B2%A4%ED%8A%B8-%EC%84%A0%EC%96%B8%ED%95%98%EA%B8%B0%ED%98%84%EC%9E%AC-Row-%EA%B5%AC%ED%95%98%EA%B8%B0
https://afsdzvcx123.tistory.com/entry/C-FarPoint-C-FarPoint-Spread-Sheet-%EC%BB%A8%ED%8A%B8%EB%A1%A4-Cell-Click-%EC%9D%B4%EB%B2%A4%ED%8A%B8-%EC%84%A0%EC%96%B8%ED%95%98%EA%B8%B0%ED%98%84%EC%9E%AC-Row-%EA%B5%AC%ED%95%98%EA%B8%B0
0
1
4
재창 신
2025년 2월 28일
In C#
https://afsdzvcx123.tistory.com/entry/C-FarPoint-C-FarPoint-Spread-Sheet-%EB%8D%B0%EC%9D%B4%ED%84%B0-%EB%84%A3%EA%B8%B0
https://afsdzvcx123.tistory.com/entry/C-FarPoint-C-FarPoint-Spread-Sheet-%EB%8D%B0%EC%9D%B4%ED%84%B0-%EB%84%A3%EA%B8%B0
0
1
6
재창 신
2025년 2월 15일
In C#
https://learn.microsoft.com/ko-kr/dotnet/csharp/language-reference/operators/lambda-expressions
https://learn.microsoft.com/ko-kr/dotnet/csharp/language-reference/operators/lambda-expressions
0
0
1
재창 신
2025년 2월 15일
In C#
https://dev.mescius.co.kr/bbs/board.php?bo_table=component_bntips&wr_id=81&sst=wr_datetimedesc&page=1
0
0
2
재창 신
2025년 2월 15일
In C#
https://jeonhj.tistory.com/69
https://jeonhj.tistory.com/69
0
0
1
재창 신
2025년 2월 15일
In C#
https://jeonhj.tistory.com/69
https://jeonhj.tistory.com/69
0
0
2
재창 신
2025년 2월 15일
In C#
https://www.csharp.com/UploadFile/009464/use-chart-control-in-windows-application-using-C-Sharp/
https://www.csharp.com/UploadFile/1e050f/chart-control-in-windows-form-application/
0
0
2
재창 신
2025년 2월 15일
0
0
12
재창 신
2025년 2월 15일
In C#
https://hubbleconstant.tistory.com/93
https://hubbleconstant.tistory.com/93
0
0
31
재창 신
2025년 2월 13일
In Database
https://m.blog.naver.com/PostView.naver?blogId=222503&logNo=10189180340&targetKeyword=&targetRecommendationCode=1
https://m.blog.naver.com/PostView.naver?blogId=222503&logNo=10189180340&targetKeyword=&targetRecommendationCode=1
- 오라클 기동법
$ su - oracle
$ export ORACLE_SID=[인스턴스명]
$ sqlplus "/as sysdba"
SQL> startup
SQL> exit
$ lsnrctl start [리스너명]
- 오라클 종료
$ su - oracle
$ export ORACLE_SID=[인스턴스명]
$ lsnrctl stop [리스너명]
$ sqlplus "/as sysdba"
SQL> shutdown
SQL> exit
- 오라클 기동상태확인
$ ps -ef | grep pmon
oracle 30990 1 0 21:30 ? 00:00:03 ora_pmon_[SID] # 이런식으로 나오면 기동중
$ ps -ef | grep tns
oracle 669 1 0 9월 06 ? 0:16 /oracle/product/10.2.0/bin/tnslsnr LISTENER -inherit # 이런식으로 나오면 리스너 기동중
- 오라클 로그 확인
1. alertlog 위치 확인
su - oracle
export ORACLE_SID=[인스턴스명]
$ sqlplus "/as sysdba"
SQL> show parameter background_dump_dest
SQL> exit
2. 해당 위치로 이동하여 alertlog상 ORA-XXXX 에러가 발생하였는지 확인
cd [해당위치]
vi alert_[SID].log
0
0
2
재창 신
2025년 2월 11일
In Database
[SQLD 시험대비!!] 2시간으로 끝내는 SQLD 핵심요약 1과목,https://youtu.be/c1kqfHuKazw
https://youtu.be/c1kqfHuKazw
0
0
4
재창 신
2025년 2월 11일
In Database
2023 SQLD 4주 합격!! 이패스비즈 SQLD 정규과정 Orientation,https://youtu.be/SbfD7xw0lZ4
https://youtu.be/SbfD7xw0lZ4
0
0
2
재창 신
2025년 2월 11일
In Database
[SQLD 시험대비!!] 마무리 쪽집게 특강 - 44개의 핵심포인트!!,https://youtu.be/BQxAxMnHByU
https://youtu.be/BQxAxMnHByU
0
0
1
재창 신
2025년 2월 11일
In Database
[SQLD 1과목 데이터모델링의 이해] 데이터 모델링,https://www.youtube.com/watch?v=g7HyMVvjo8U&t=690s
https://www.youtube.com/watch?v=g7HyMVvjo8U&t=690s
0
0
2
재창 신
2025년 2월 11일
In Database
SQLD 선행학습1,https://www.youtube.com/watch?v=yzyqg5k7lMM&list=PLKdqgOvYNmcYTIorED1PuDaJ0_pX4HjC_&index=2
https://www.youtube.com/watch?v=yzyqg5k7lMM&list=PLKdqgOvYNmcYTIorED1PuDaJ0_pX4HjC_&index=2
0
0
1
재창 신
2025년 2월 11일
In Database
SQLD 제45회 시험 1과목 문제 분석✔ |데이터 모델링의 이해|와우패스,https://www.youtube.com/watch?v=VwIoZZfWYrs
https://www.youtube.com/watch?v=VwIoZZfWYrs
0
0
3
bottom of page