[COM] Com Event Handling

C/C++/VC++ / MFC 2013. 5. 24. 15:04

http://www.codeproject.com/Articles/9014/Understanding-COM-Event-Handling

http://www.codeproject.com/Articles/3541/COM-Connection-Points

XMLHttpRequest onStatusChange Event Handling : http://www.ookii.org/Blog/using_ixmlhttprequestonreadystatechange_from_c

 

XMLHttpEventSample.zip

 

'C/C++ > VC++ / MFC' 카테고리의 다른 글

[VC++] Detecting Hardware Insertion and/or Removal  (0) 2013.05.30
[ATL] ATL Com Programming  (0) 2013.05.24
[VC++] IOCP 프로그래밍  (1) 2013.05.21
[VC++] Visual Studio Predefine Macro  (0) 2013.05.01
[VC++] Tray Icon Animation  (0) 2013.04.26
posted by 뚱2

출처 : 출처 : iOS document

Events are objects sent to an application to inform it of user actions. In iOS, events can take many forms: multitouch events, motion events—for example, from device accelerometers—and events for controlling multimedia. (This last type of event is known as a remote-control event because it originates from a headset or other external accessory.)



posted by 뚱2

오늘 아이폰 기본 '사진'앱 값이 화면을 클릭하면 토글 방식으로 Status, NavigationBar, ToolBar가 사라지거나
보여지는 앱을 만들어 봤습니다.
화면을 클릭하면 이벤트를 받기위해 화면 크기 만한 UIButton을 만들고 Custom으로 설정하고  
화면에서는 보이지 않게 하기 위해서 Alpha값은 0.0으로 했습니다.

그랬더니 이상하게 이벤트가 발생하지 않았습니다.
이상해서 이리저리 해보다가 Alpha값을 0.0 초과로 지정 했더니 이벤트가 발생했습니다.
개발할때 실수 할수 있는 부분이라고 생각되어서 글 올려봅니다. 
posted by 뚱2