분류 전체보기(353)
-
[DotNetBar] ToolTip
If you need to show custom tooltip for Appointments in WinForms (Windows Forms) CalendarView control you can do so by handling CalendarView.MouseEnter event to show tooltip and CalendarView.MouseLeave to hide tooltip. Following code illustrates how to show custom Balloon style tooltip: private Balloon _AppointmentBalloon = null; private void SetupAppointmentBalloon() { _AppointmentBalloon = new ..
2012.07.11 -
[MSSQL] 함수 정리
삭제 후 용량 줄이기DBCC SHRINKDATABASE('데이버베이스 이름')DBCC SHRINKDATABASE('데이터베이스이름')( database_name[,target_percent] [,{NOTRUNCATE| TRUNCATEONLY}]) 테이블 레코드 모두 날리기truncate table table명칭;읽기전용에서 풀기alter database ermsdb2 set read_write; 기타 함수stdev():표준편차max():최대값, 최소값:main()isnull([필드],0)
2012.06.26 -
[프로그램 수정] 빈 데이터 추가
보호되어 있는 글입니다.
2012.06.26 -
[MFC] ODBC
ODBC연결할 때 제대로 연결 안해봐서 몰랐는데 알고보니ODBC는 단지 컨넥션이고 UID, PWD는 나중에 따로 입력하는걸 몰랐을까...제길..내소스 아니니까 이런게 짜증나네....더러운 쉑히들 바꿀수 있게 해놔야지..!!
2012.06.11 -
[WinForm] 배열선언안하고 컨트롤 찾기
헤쉬테이블로 키값을 넣어도되지만 요렇게 Controls.Find()를 써도 되넹 몰랐넹 담부터 써봐야지!!Controls.Find()
2012.06.04 -
[MFC] 디버깅용 DLL파일들
디버깅용으로 설치 파일 만들면 필요하다네 짜증나구로 이것때문에 설치도 안되고...왜 릴리즈파일로 생성안한거야!!
2012.06.04