=======================================================================================

                              콤보 박스  클래스 함수들 리스트 (펌)

=======================================================================================

▷ CComboBox::AddString - 스트링을 더함. 
▷ CComboBox::CComboBox - ComboBox 오브젝트를 생성(구성). 
▷ CComboBox::Clear -현재 선택을 지움. 
▷ CComboBox::CompareItem - 새로운 리스트 항목의 상태적 위치를 결정. 
▷ CComboBox::Copy - 현재 선택을 Copy. 
▷ CComboBox::Create - CComboBox를 생성. 
▷ CComboBox::Cut - 제거된 텍스트를 복사. 
▷ CComboBox::DeleteItem- 항목이 Combo 박스에서 제거. 
▷ CComboBox::DeleteString - 스트링을 제거. 
▷ CComboBox::Dir - 리스트를 더함. 
▷ CComboBox::DrawItem - 양상이 변할 때 불려짐. 
▷ CComboBox::FindString - 첫 번째 스트링을 찾음. 
▷ CComboBox::FindStringExact - 첫 번째 리스트 박스 스트링을 찾음. 
▷ CComboBox::GetCount - 항목의 수를 회복. 
▷ CComboBox::GetCurSel - 현재 선택된 항목의 색인을 찾음 
▷ CComboBox::GetDroppedControlRect - 스크린 좌표를 되찾음. 
▷ CComboBox::GetDroppedState - 리스트 박스가 보일지를 결정. 
▷ CComboBox::GetEditSel - 시작과 끝나는 문자의 위치를 얻음. 
▷ CComboBox::GetExtendedUI - 디폴트, 확장 사용자 인터페이스의 결정. 
▷ CComboBox::GetItemData - 항목과 관련된 비트값을 회복. 
▷ CComboBox::GetItemDataPtr - 포인터로서 관련된 비트 값을 회복. 
▷ CComboBox::GetItemHeight - 리스트 항목의 높이를 회복. 
▷ CComboBox::GetLBText - 리스트 박스로 부터 스트링을 얻음.
▷ CComboBox::GetLBTextLen - 스트링의 길이를 지정. 
▷ CComboBox::InsertString - 스트링의 삽입. 
▷ CComboBox::LimitText - 텍스트의 길이를 제한. 
▷ CComboBox::MeasureItem - Combo 박스 치수를 결정하기 위해 불려짐. 
▷ CComboBox::Paste - 현재 커서 위치에서 편집 제어로 삽입. 
▷ CComboBox::ResetContent - 모든 항목의 제거. 
▷ CComboBox::SelectString - 스트링을 선택, 복사. 
▷ CComboBox::SetCurSel - 스트링을 선택. 
▷ CComboBox::SetEditSel - 편집 제어에서 문자들을 선택. 
▷ CComboBox::SetExtendedUI - 디폴트, 확장 사용자 인터페이스의 선택. 
▷ CComboBox::SetItemData - 항목과 관련된 값을 정함. 
▷ CComboBox::SetItemDataPtr - 포인터에 대한 관련된 값을 정함. 
▷ CComboBox::SetItemHeight - 높이를 지정. 
▷ CComboBox::ShowDropDown - 리스트 박스를 보여주거나 숨김.

'Programming > C Library' 카테고리의 다른 글

Date and Time Functions  (0) 2016.05.10
[C언어] 문자열 관련 함수  (0) 2016.03.30

'Programming > C Library' 카테고리의 다른 글

리눅스 커널 시간 설정 date / hwclock  (0) 2016.05.11
[C언어] 문자열 관련 함수  (0) 2016.03.30

shell script에서 하는 산술연산

#!/bin/sh


refer=1800

resol=4096

adc0=3060

result=`expr $(($refer*$adc0/$resol))`

echo $result

'Programming > Linux Coding' 카테고리의 다른 글

Ex11. 비트맵 파일 정보 갖어오기  (0) 2016.12.19
Ex10. Makefile - shared library (so 파일 만들기)  (0) 2016.12.15
chmod  (0) 2016.05.02
linux svn command  (1) 2016.04.28
Linux 디바이스 드라이버의 작성  (0) 2016.04.27

잭크와 콩나무 - TISTORY

http://jjackq.tistory.com/98

svn 체크아웃

svn co 169.168.0.001


메세지 추가

svn commit -m "add new function"


svn 현재 정보 보기

svn info


특정 로그 자세히 보기

svn log -v -r 125


폴더 및 파일 삭제

svn delete --force old_folder/

svn commit -m "delete old_folder"


폴더 및 파일 추가

svn add new_folder/

svn commit -m "add new_folder"


소스 코드의 각 라인을 수정한 사람 보기

svn blame source.c


현재 작업 내용을 최신내용으로 갱신 

svn up

현재 작업 내용을 리비전 1로 갱신(최신 리비전보다 이전으로 되돌리는 것도 가능하다.) 

svn up -r 1

'Programming > Linux Coding' 카테고리의 다른 글

shell script에서 하는 산술연산  (0) 2016.05.03
chmod  (0) 2016.05.02
Linux 디바이스 드라이버의 작성  (0) 2016.04.27
자신만의 Command 만들기 - alias  (0) 2016.04.26
find  (0) 2016.04.14

'Programming > Linux Coding' 카테고리의 다른 글

chmod  (0) 2016.05.02
linux svn command  (1) 2016.04.28
자신만의 Command 만들기 - alias  (0) 2016.04.26
find  (0) 2016.04.14
Linux Commands  (0) 2016.04.14

# vi ~/.bashrc


alias ll='ls -alF' 추가

# ll drwxr-xr-x 45 ysw ysw 4096 Apr 26 17:01 ./ drwxr-xr-x 8 root root 4096 Oct 30 20:39 ../ -rw------- 1 ysw ysw 25500 Apr 21 20:37 .bash_history -rw-r--r-- 1 ysw ysw 220 Sep 22 2015 .bash_logout -rw-r--r-- 1 ysw ysw 3901 Feb 12 17:47 .bashrc


'Programming > Linux Coding' 카테고리의 다른 글

linux svn command  (1) 2016.04.28
Linux 디바이스 드라이버의 작성  (0) 2016.04.27
find  (0) 2016.04.14
Linux Commands  (0) 2016.04.14
SVN(Subvision) 간단히 사용하기  (0) 2016.04.14

+ Recent posts