untitled

Size: px
Start display at page:

Download "untitled"

Transcription

1 MFC MFC MFC AppWizard 來 MFC MFC 類 了 類 Document/View MFC Visual C++ AppWizard MFC 不 力 亮 來 不 Document View 不 列 AppWizard View 類 CEditView 列 列 說 行 不 了 Document/View MFC Application Framework 靈 OLE Document OLE PaintBrush bitmap SoundRecorder Wave Excel Word MFC Document 料 料 MFC CDocument 說 理 料 類 類 理 料 MFC 不 料 CDocument 來 理 料 串列 列 Document CDocument 了 類 CView 不論什 料 料數 7-3a 數 理 數 數 串列 列 料 數 CView 了 料 了 View 料 滑 View Document ( 7-3b) 1

2 Document/View MFC 類 料 理 了 類 讀 CDocument Serialize 行 CView OnDraw OnPaint 行 兩 類 CMyDoc CMyView CMyDoc::Serialize CMyView::OnDraw 不 Document/View 什 良 例 File/Open Application Framework CMyDoc::Serialize 讀 Application Framework CMyView::OnDraw 料 來 狀 了 WM_PAINT Framework CMyView::OnDraw Display DC File/Print Framework CMyView::OnDraw Printer DC 了 Document/View MFC 了 流 路 MFC ㆒ Framework GUI 力 不 MFC Document/View 更 力 料 料 不 流 GUI 便 ocument/view Application Framework Visual C++ 來 IC 裡 女 了 利 Visual C++ Scribble step0 來 不 ㆒ 易 亂 #if#endif 例 // // ㆓ ㆒ 類.H.CPP 遼 六.CPP 六.H 利 Visual C++ Scribble step0 列 狀 列 Document/View ㆒ MFC MDI 類 2

3 利 Visual C++ Scribble step0 類 MFC 利 Visual C++ Scribble step0 7-4 Scribble step0 類 行 7-5 Document Template Document Template 念 Document/View 念 裡 View 切 了 View 立 MDI Document Frame SDI Document Frame OLE Document Frame 說 Document Frame View 料 料 料 料 1. Document 2. View 3. CMDIChildWnd Document Template 來 理 CMultiDocTemplate 不 料 例 TEXT BITMAP 不 Document Template BOOL CMyWinApp::InitInstance() CMultiDocTemplate* pdoctemplate; pdoctemplate = new CMultiDocTemplate( IDR_TEXTTYPE, RUNTIME_CLASS(CTextDoc), RUNTIME_CLASS(CChildFrame), RUNTIME_CLASS(CTextView)); AddDocTemplate(pDocTemplate); pdoctemplate = new CMultiDocTemplate( IDR_BMPTYPE, RUNTIME_CLASS(CBmpDoc), RUNTIME_CLASS(CChildFrame), RUNTIME_CLASS(CBmpView)); AddDocTemplate(pDocTemplate); 論 CMultiDocTemplate 參數 露了 CMultiDocTemplate::CMultiDocTemplate(UINT nidresource, CRuntimeClass* pdocclass,cruntimeclass* pframeclass, CRuntimeClass* pviewclass); 1. nidresource ID 例 IDR_SCRIBTYPE RC 不 類 ID 2. pdocclass Document 類 CDocument CRuntimeClass 3. pframeclass Child Frame 類 CMDIChildWnd CRuntimeClass 4. pviewclass View 類 CViewCRuntimeClass CRuntimeClass 什 CRuntimeClass 類 錄 串列 類 DECLARE_DYNAMIC DECLARE_DYNCREATE DECLARE_SERIAL static CRuntimeClass CMultiDocTemplate 參數 Document Template 了 類 CRuntimeClass Document Template 類 錄 document view document frame window CMultiDocTemplate 參數 IDR_SCRIBTYPERC MENU ICON 串 STRING 不 類 ID 串 串 '\n' 串 串 AppWizard Advanced Options 3

4 串 行 CDocTemplate::GetDocString 參數 索 1~7CDocTemplate 數 索 CDocTemplate 數 // in AFXWIN.H class CDocTemplate : public CCmdTarget enum DocStringIndex windowtitle, // default window title docname, // user visible name for default document filenewname, // user visible name for FileNew // for file based documents: filtername, // user visible name for FileOpen filterext, // user visible extension for FileOpen ; ; // for file based documents with Shell open support: regfiletypeid, // REGEDIT visible registered file type identifier regfiletypename // Shell visible Scribble 例 串 句 Document 料 View 料 CDocument 理 料 Collections Classes MFC 來 理 料 類 理 料數 CView 料 CDC CGdiObject 說 兩 兩 MFC 料 Document/View 7-3 說 View View Document View Document View Document 不 立 Document Frame Document Views 不 Views Document 不 View CScrollView 不 -- 料 理 讀 Serialization Serialize CMyDoc Serialize 料 立 讀 Scribble step1 例 step0 CScribbleDoc 什 數 說 不了什 料 Serialize AppWizard 串 來龍 弄 4

5 void CScribbleDoc::Serialize(CArchive& ar) if (ar.isstoring()) // TODO: add storing code here else // TODO: add loading code here 老說 void CScribbleView::OnDraw(CDC* pdc) CScribbleDoc* pdoc = GetDocument(); ASSERT_VALID(pDoc); void CScribbleDoc::Serialize(CArchive& ar) if (ar.isstoring()) // TODO: add storing code here else // TODO: add loading code here 老說 了 讀 料 料 兩 View Document Document Frame CView 來 View 1. Document Frame WM_PAINT View OnPaint OnPaint OnDraw 了 料 OnDrawOnPaint 不 了 View 類 滑 理 滑 View 類 afx_msg void OnLButtonDown(UINT nflags, CPoint point); afx_msg void OnLButtonUp(UINT nflags, CPoint point); afx_msg void OnMouseMove(UINT nflags, CPoint point); 兩 Scribble step0 不 void CScribbleView::OnDraw(CDC* pdc) CScribbleDoc* pdoc = GetDocument(); ASSERT_VALID(pDoc); // TODO: add draw code for native data here Hello CFrameWnd 類 例 MDI CMDIFrameWnd 類 MDI 兩 new CMDIFrameWnd LoadFrame WM_CREATE CMainFrame::OnCreate 行 來 裡 行 列 狀 列 立 LoadFrame 參數 例 IDR_MAINFRAME 來 LoadFrame Create 不 列 狀 列 Toolbar & Status bar 列 狀 列 CToolBar CStatusBar 兩 隸 CMainFrame 兩 數 兩 class CMainFrame : public CMDIFrameWnd protected: // control bar embedded members CStatusBar m_wndstatusbar; CToolBar m_wndtoolbar; ; 立 WM_CREATE 利 列 狀 列 立 來 了 WM_CREATE Message Map BEGIN_MESSAGE_MAP(CMyMDIFrameWnd, CMDIFrameWnd) ON_WM_CREATE() END_MESSAGE_MAP() ON_WM_CREATE WM_CREATE OnCreate AppWizard OnCreate Message Map 列 狀 列 m_wndtoolbar.create(this) 隸 this 列 m_wndtoolbar.loadtoolbar(idr_mainframe) RC 列 IDR_MAINFRAME RC 兩 列 LoadToolBar BITMAP TOOLBAR 來 列 m_wndstatusbar.create(this) 隸 this 狀 列 m_wndstatusbar.setindicators(,) 參數 列 參數 列 數 Indicator 狀 列 來 數 On/Off 狀 AFXRES.H indicators CCmdTarget 類 Message Map 理 類 DECLARE_MESSAGE_MAP.CPP BEGIN_MESSAGE_MAP END_MESSAGE_MAP 兩 錄 7-6 Scribble 類 Message Map 例 CScribbleApp 類 WM_COMMAND BEGIN_MESSAGE_MAP(CScribbleApp, CWinApp) ON_COMMAND(ID_APP_ABOUT, OnAppAbout) ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew) ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen) ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup) END_MESSAGE_MAP() 了 ID_APP_ABOUT OnAppAbout 理 CWinApp 理 什 5

6 File / Edit / View / Window / Help 令 理 理 欄 聯 Yes 令 令 理 不 類 Message Map 令 No Framework 了不 Open Save As Print Print Setup Find Replace Edit CEditView File 錄 LRU 數 Appwizard 更 便 View 列 狀 列 見 Window 列 力 列 理 Cascade Tile 欄 No 令 理 Message Map AppWizard 了 了 BEGIN_MESSAGE_MAP(CScribbleApp, CWinApp) ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew) ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen) ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup) END_MESSAGE_MAP() BEGIN_MESSAGE_MAP(CScribbleView, CView) ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint) ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview) END_MESSAGE_MAP() Scribble 了 About 了 WM_COMMAND ID_APP_ABOUT Message Map BEGIN_MESSAGE_MAP(CScribbleApp, CWinApp) ON_COMMAND(ID_APP_ABOUT, OnAppAbout) ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew) ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen) ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup) END_MESSAGE_MAP() 來 OnAppAbout 理 void CScribbleApp::OnAppAbout() CAboutDlg aboutdlg; aboutdlg.domodal(); CAboutDlg CDialog 類 class CAboutDlg : public CDialog enum IDD = IDD_ABOUTBOX ; // IDD_ABOUTBOX RC DECLARE_MESSAGE_MAP() ; C CDialog 類 類 RC DoModal 10 論 料 DDX 料 DDV 6

7 CEditView AppWizard 六 CScribbleView 類 CView CEditView 了 CEditView 力 類 Windows Edit SerializeRaw Edit raw text 料 AppWizard 六 了 CView CEditView 兩 7

untitled

untitled 力 兩 力 讀 兩 3.1 力 力,,,,,,,,,,,,,,,,,,,,, O, X,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 類 行 數 類 數 量 類 金 14 識 說 念 類 數 不 列 15 3.1.1 3.1.1.1 行 類 行 類 類 類 料 料 路 類 1,,,,,,,,,,,,,,,,,, 類 1. 2,,,,,,,,,,,, 度 理 3,,,,, 4,,,,,,,,,

More information

最即時的Sybase ASE Server資料庫診斷工具

最即時的Sybase ASE Server資料庫診斷工具 TOAD 9.5 Toad Oracle 料 SQL 料 行 理 SQLprofile Quest Software 了 Oracle -Toad Tools of Oracle Application Developers Toad 了 DBA DBA 理 易 度 Toad 料 SQL PL/SQL Toad Oracle PL/SQL Toad Schema Browser Schema Browser

More information

untitled

untitled Memory leak Resource 力 金 3-tier 見 Out of Memory( 不 ) Memory leak( 漏 ) 狀 Application Server Crash 理 Server 狀 Crash 類 JVM 說 例 行說 說 Memory leak Resource Out of Memory Memory leak Out of Memory 不論 Java heap

More information

國中生物教師資訊行為之研究

國中生物教師資訊行為之研究 The Advanced Study of Information Behavior of Biology Teachers in Junior High School Chih-Ping Lan Biology Teacher, Houlung Junior High School, MiaoLi, Taiwan Email: L1220661@ms36.hinet.net Yung-Ta Chang

More information

untitled

untitled 數 歷 行 林 嶺 理 數 行 歷 料 行 行 來 了 力 行 行 力 降 行 連 降 律 力 路 來 參 來 數 路 行 數 行 力 理 論 都 識 不 力 論 論 識 量 量 歷 便 力 領 1 路 路 不 識 路 數 理 行 歷 行 良 了 留 行 歷 行 數 更 行 數 歷 論 錄 錄 量 數 行 路 論 力 度 料 力 度 理 錄 論 數 數 讀 數 料 料 不 論 了 率 參 都 數 來

More information

untitled

untitled 年 館 館 E 數 參 來 不 年 臨 狀 利 年 行 年 狀 館 / 館館 (Information Literacy) 都不 Health Literacy 說 聯 療 裡 了 料 讀 力 館 2000 年 參 說 了 度 ( 1) Nutbeam 2001 年 更 讀 療 更 1998 年 識 行 來 ( 2) 館 度來 更 力 量 量 (Rapid Estimate of Adult Literacy

More information

untitled

untitled PowerBuilder 連 Microsoft SQL Server database PB10.0 PB9.0 若 Microsoft SQL Server 料 database Profile MSS 料 (Microsoft SQL Server database interface) 行了 PB10.0 了 Sybase 不 Microsoft 料 了 SQL Server 料 PB10.0

More information

untitled

untitled 2004 年六 ~ 北 立 北 The Station of the Servo Vision Fever Triage E-mail: sheu@mail.stut.edu.tw 都 力 量 量 連 量 不 量 降 利 理 量 更 量 理 Abstract Many infectious diseases will be under an attack of fever. To measuring

More information

untitled

untitled BIBLID 1819-82602014221-2 p. 47-55 館 館 Library Service Platforms 劉 聯 理 2014 年 2 Marshall Breeding 來 參 館 館 略 論 館 館 理 館 Library Service PlatformsLSPs 館 念 Marshall 2011 年 Automation Marketplace 館 New-generation

More information

無線網路技術應用於802

無線網路技術應用於802 路 802.11b 802.11g 林 立 32054 里 3 38 Email: s1532021@cc.ncu.edu.tw jimchang@axp1.csie.ncu.edu.tw sheujp@csie.ncu.edu.tw 年來 路 來 WLAN 都 流 率 (Throughput) 數 WLAN 論 WLAN Ad-hoc mode Infrastructure mode 行 路 WEP

More information



 99 年 理 療 99 年 力 2111 8 1 類 療 神 1 不 80 1.25 2 不 1 hemorrhagic stroke 不 列 異 arteriovenous malformations 狀 berry aneurysms hypertension thrombosis 2 perceptual impairments 刺 agnosia agraphia alexia apraxia

More information

Microsoft PowerPoint - hci2-lecture7.ppt

Microsoft PowerPoint - hci2-lecture7.ppt Overview 파일입출력 CFile 클래스를이용한파일입출력기법 도큐먼트 / 뷰구조이해 CArchive 클래스를이용한직렬화기법 HCI Programming 2 (321190) 2007 년가을학기 11/5/2007 박경신 2 파일입출력방법 일반파일입출력 CFile ( 파생 ) 클래스 Read(), Write() 등의함수이용 직렬화 (serialization)

More information

untitled

untitled 精神 裂 力 理 1 2 2 理 1 理 2 狀 精神 裂 理 理 2009 年 1 14 2009 年 2 3 理 度 立良 療 力 理 理 行 療 念 理 理 力 更 狀 理 念 力 力 : 精神 裂 行 療 理 精神 裂 亂行 力 American Psychiatric Association, 20092008 年 精神 1040585 精神 裂 數 50-60 2008 精神 裂 58%80%

More information

untitled

untitled 館 論 BIBLID 1819-8260 2014 22 1-2 p. 56-60 館 MakerSpaces 館參 Learning Commons Information Commons 館 了 Makerspaces 館 了 館 論 館 行 館不 館 利 索 識 什 Makerspaces Hackerspaces Maker Faire 來 Hackerspaces 立 數 hacklab

More information

untitled

untitled 26 2006 年 5 203~212 略 例 利益 (Organization for Economic Cooperation and Development, OECD) 力 行 量 力 力 來 不 力 量 不 了 識 不 了 念 略 力 了 歷 力 了什 更 量 歷 路 了 理 不易 論 臨 老 參 參 識 不 : 理論 理 力 神 識不 識 異 來 不 練 更 練 Costa,1985 不

More information

誰是以馬內利?

誰是以馬內利? 論 讀 14 1 利 Buber 利 讀 14-17 1-10 歷 度 讀 來 利 利 歷 2 734 年 735 年 列 蘭 利 聯 3 勒 兩 蘭 列 略 更 聯 1-3 令 見 臨 兩 行 念 4 參 六 7-10 了 聯 不 蘭 列聯 7-9 不 5 見 10-11 不 6 13 說 17-20 利 不 說 13-16 7-9 7 10-12 了 不 13-16 理 利 什 異 1 利 來說

More information

untitled

untitled 金 類 連 領 金 立 量 金 易 勞 利 不 度 廉 度 理 金 行 金 例 行 立 理 立 類 金 類 理 1. 金 力不 度 不 不 切 零 1~2 行 95% 量 益 行 金零 不 易 量 力 立 量 Machine Vision 理 例 1980 年 D.Marr[1] 理論 1983 年 Yasuhiko Hara[2] 利 路 路 1985 年 [3] 數 1986 年 J.Canny[4]

More information

untitled

untitled The development of integrated interface for finite element analysis offemur 精 里 福路 707 03-518647303-518-6521 Email:m9008022@chu.edu.tw 料 立 來 立 行 力 狀 立 ANSYS CT 亮度 亮度 力 行 力 不 更 浪 更 參 料 利 行 力 ANSYS 力 Abstract

More information

untitled

untitled 老 老 說 李 理 領 1. (Motion Planning) 理 (Geometric Reasoning) 2. (Artificial Life) 3D 3. (Distributed Virtual Environment) 4. 數 (Affective Computer for Digital Home) 5. Grid Computing 6. 1. (Motion planning/geometric

More information

untitled

untitled 利 理 漏 劉 麟 {g924, chaolin}@cs.nccu.edu.tw zmgao@ntu.edu.tw 省 力 路 來 路 利 料來 不 漏 利 selectional preference collocation.6 Key Words 論 理 collocations selectional preferences 論 computer-assisted item generation

More information

Microsoft PowerPoint - hci2-lecture10.ppt

Microsoft PowerPoint - hci2-lecture10.ppt Overview 도큐먼트 / 뷰구조 HCI Programming 2 (321190) 2008 년가을학기 11/25/2008 박경신 도큐먼트 / 뷰구조 도큐먼트템플렛 (Document Template) SDI (Single Document Interface) 응용프로그램의기본구조 MDI (Multiple Document Interface) 응용프로그램의기본구조

More information

untitled

untitled 年 識 料 ˍˍˍˍˍˍ 不 80 1.25 2 1~80 不 1 列 array A n n matrix 零 lower triangular matrix 列 來 n n(n+1)/2 n(n 1)/2 n n 2 例 行 Y[1][3] 列 INT Y[4][4]; FOR(I=0; I

More information

untitled

untitled Constructing Knowledge with the Big Six Skills Mei-Yin Lin, Han-Lin Hsiung Instructor, Department of Finance, Jin Wen Institute of Technology E-mail: {rosa, hanlin}@jwit.edu.tw Nai-Fong Kuo Professor,

More information

untitled

untitled 識 Production and perception errors in English vowels 麗 1 2 2 2 1 立 2 立 理 701 路 1 (06) 275-7575 Ext 52231 Email: leemay@mail.ncku.edu.tw 理 說 11 類 索 來 不 年 39 ( 女 20 19 ) 行 錄 Peterson and Barney (1952) /hvd/

More information

「藥物安全簡訊」出刊計畫

「藥物安全簡訊」出刊計畫 ~~~~~~~~~~~~~~~~~~~~~~~~~~ Drug Safety Newsletter~~~~~~~~~~~~~~~~~~~~~~~~~ Fenoverine 玲 麗 不良 Fenoverine Spasmopriv; Morfin; Fenorine phenothiazine 類 non-anticholinergic 滑 來 療 泌尿 1, 2 療 離 流 3-5 流刺 4 滑 synchronize

More information

untitled

untitled 理 年 來 利 便 異 不 A. B. 兩 鱗 葉 C. 1. 識 量 例 列 不 類 參 ( ) 索 2. 泥 林 異 連 金 便 金 精 度 便 易 利 量 率 3. 省 茶 年 數 年 不 羅 度 異 ( 葉 數 ) 度 0 4 數 數 不 6 4. 年 省 年 林 1 蓮 陵 梨 李 不 ( ) 5 異 行 便 輻 狀 輻 省 便 度 不 陵 度 累 更 不 異 ( ) 林 若 度 度 率

More information

untitled

untitled 理 勞 暴露 類 CNOS93-04 行 93 年 1 1 93 年 12 31 李 亮 參 行 年 勞 暴露 尿 勞 暴露 來 暴露 勞 尿 便 理 暴露 勞 尿 行 量 60 µm polydimethylsiloxane divinylbenzene (PDMS DVB) 尿 度 0.01436 µg/ml 2.872 µg/ml 度 11.6 µg/ml 2.320 µg/ml 類 度 參數

More information

以非無塵室製程搭配高效能數值分析技術設計與製作生醫晶片用微流體元件

以非無塵室製程搭配高效能數值分析技術設計與製作生醫晶片用微流體元件 年 理 理 李 理 理 理 行 理 理 理 療 理 來 了 了 臨 類 參 度 臨 數 臨 了 acute emotional crisis 力 Beckwith & Rodning, 1992 復 不 力 Kang, et al., 1995; Miles, Funk, & Kasper, 1992; Shields-Poe Pinelli, 1997 了 來 理 參 理 理 不 離 來 切 不

More information

untitled

untitled 年 類 理 療 神 理 療 5110 6 1 不 80 1.25 2 不 1 列 老 行復 療 度 不 律 來 療 來 離 2 神 列 療 理 3 muscle spasm 列 神 primary ending Gorgi tendon 神 secondary ending 離神 free nerve ending 4 理論 gate theory 不 C 神 slow A δ 神 fast inhibitory

More information

untitled

untitled 26 2006 年 5 99~106 QWETY DVOAK 李 葉 理 QWETY DVOAK QWETY 率 (%) 52.447.6 不 DVOAK 率 45.954.1 QWETYDVOAK 了 2.9 % α=0.05 數 率 不良 不 不 易 理 勞 更 易 降 率 [5] () Sholes 1873 年 列 QWETY 列 "QWETY" [20] 度 便 了降 數 率 ( A SO

More information

untitled

untitled FAST FAST Free Assistant of Structural Tests 1 2 1 1,2 {g936727, g936339, g936704}@oz.nthu.edu.tw jschang@cs.nthu.edu.tw 1 2 論 年來 理領 裡異 漏 讀 量 論 路 句 讀 行 句 句 句 了 FAST (Free Assessment of Structural Test)

More information



 94 年 類 療 理 療 1 4111 8 1 不 80 1.25 2 不 1 路 列 awareness intellectual emergent anticipatory retrograde 2 復良 度不 列 來 不良 Moberg s Pick-Up Test Romberg s Test Semmes-Weinstein Monofilament Test sense of joint

More information

untitled

untitled 省 24 路 29 TEL:886-4-23501155 FAX:886-4-23507373 Baxenden Chemicals 異 量 異 不 離 異 NC 量 Et Et R N H Et H R1 H R N R 1 例 1. 異 量 率 NCH=11 來 量 NCH=12 理論 行 力 NCH11.3 11.8 率 理 1 1.6 不 理 量 來 NCH=11.6 來 量 異 來 [Dimethyl

More information

歯Lecture2.PDF

歯Lecture2.PDF VISUAL C++/MFC Lecture 2? Update Visual C ++/MFC Graphic Library OpenGL? Frame OpenGL 3D Graphic library coding CLecture1View? OpenGL MFC coding Visual C++ Project Settings Link Tap Opengl32lib, Glu32lib,

More information

untitled

untitled 年 類 理 療 療 4215 6 1 不 80 1.25 2 不 1 度 力 body mechanics 療 行 2 力 muscle endurance 療 不 不 狀 練 度 low-intensity 數 high-repetition acute phaseslow-twitch muscle 不 immobilization 行 3 練 列 不 trapezius 菱 rhomboids

More information

untitled

untitled 列 1 2 李 1,3 2 1,4 1 立 2 3 立 4 立 利 立 列 利 力 (Negative Dielectrophorestic force, N-DEP Force) 行 利 流 SU-8 利 不 流 流 (U937, 15-20µm) 度 ITO 利 PDMS 料 利 利 雷 立 ITO PDMS 行參數 率 (5 Vpp, 1KHz) 粒 度 力 例 力 量 : SU-8 力 雷

More information

untitled

untitled 95 年 療 類 療 理 1 4301 8 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 列 療 Tracheal gas insufflation 力 PEEP 2 列 療 Extracorporal membrane CO 2 removal Intravascular oxygenator Tracheal gas insufflation Inverse ratio ventilation

More information

untitled

untitled 理 葉 CNFH-88-04 行 87 年 9 1 88 年 6 30 類 葉 Staphylococcus aureus Staphylococcus epidermidis Streptococcus mutans Streptococcus sanguis Escherichia coli Klebsiella pneumoniae Pseudomonas aeruginosa Candida

More information

untitled

untitled 理 度 行 年 年 李 參 利 離 冷 了 不 度 降 行 良 更 復 離 冷 冷 洞 不 良 洞連 率 降 行 度 料 料 A different weight ratio of various viscosity sodium alginate mixed with sodium chloride solution was fabricated a highly macroporous biodegradable

More information

untitled

untitled 94 年 類 復 復 1 2103 8 1 不 80 1.25 2 不 1 列 蠟 度不 1 1 ~ 8 4 度 不易 2 理 列 度不 度 理 料 更 料 sealant 不 行 3 complete overdenture 列 度 力 retention 4 列 裂 兩 螺 不易 裂 裂 六 數 留 5 列 狀 列 理 立 零度 降 度 力量 6 列 7 balanced occlusion 若

More information

Microsoft PowerPoint - hci2-lecture3.ppt

Microsoft PowerPoint - hci2-lecture3.ppt Overview MFC 프로그램구조 HCI Programming 2 (321190) 2007년가을학기 10/1/2007 박경신 MFC 개요 MFC 발전과정과주요특징이해 MFC 구조 MFC 구성요소, 클래스계층도, 주요클래스 MFC 최상위클래스인 CObject 가제공하는서비스이해 MFC 가제공하는전역함수사용법 MFC 응용프로그램구조 MFC Application

More information

untitled

untitled 力 00 年 -4 流 輪 流 路 力 Impact of HV -AC and DC Line Faults on Stressing a Marine Current urbine-generator Set * 呂 * 林 * + # Jong-Ian sai Guang Ching Leu Sharon Lin Rong-Ching Wu Ching-Hong Wang * + # *Chunghwa

More information

untitled

untitled 利 度 1 利 度 歷 年 行 年 行 領 女 離 更 利 度 不 度 更 領 度 參 陸拉 立 例 來 陸拉 利 領 陸 度 2 例 Droit de la famille 離 律 來 度 領 律行 3 例 崙 度 崙 拉 Raguideau 崙 contrat de mariage 拉 Beauharnais 女 了 1803 年 3 16 更 律 不 類 magistrat magistrature

More information

4S 1차년도 평가 발표자료

4S 1차년도 평가 발표자료 객체지향프로그래밍응용 Chap 2. 프로그램의뼈대 2012.09.17. 오병우 컴퓨터공학과금오공과대학교 윈도우프로그램각부분의명칭 타이틀바 메뉴 프레임윈도우오브젝트 메뉴오브젝트 도구모음 툴바오브젝트 스크롤바 클라이언트영역 뷰오브젝트 상태표시줄 상태바오브젝트 Department of Computer Engineering 2 Win32 Application API

More information

5장 MFC기반 다지기

5장 MFC기반 다지기 5 장 MFC 기반다지기 김성영교수 금오공과대학교 컴퓨터공학부 들어가기 (1) pp.132 ~ 138 비주얼스튜디오에서 MFC 어플리케이션작성 참조 시스템메뉴 메뉴 최소 / 최대 / 닫기버튼 툴바 대화상자 클라이언트영역 (Client Area) 스크롤바 상태표시줄 2 들어가기 (2) 3 들어가기 (3) 4 들어가기 (4) 솔루션탐색기확인 WinMain() 함수가없다?

More information

untitled

untitled 96 年 不 療 理 3111 8 1 類 理 療 理 療 療 療 療 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 連 continuous passive motion 列 力 5 度 2 45 療 量 120/65 療 力 55 65 93 120 3 裡 4 度 流 度 度 不 復 不 量 5 26 3MHz, 0.8 W/cm 2, 50% 3MHz, 1.5 W/cm 2, 1MHz,

More information

Microsoft PowerPoint - hci2-lecture3.ppt

Microsoft PowerPoint - hci2-lecture3.ppt Overview MFC 프로그램구조 HCI Programming 2 (321190) 2008년가을학기 9/30/2008 박경신 MFC 개요 MFC 발전과정과주요특징이해 MFC 구조 MFC 구성요소, 클래스계층도, 주요클래스 MFC 최상위클래스인 CObject 가제공하는서비스이해 MFC 가제공하는전역함수사용법 MFC 응용프로그램구조 MFC Application

More information

untitled

untitled 兩 類 20070825 5 年 (Cambrian) 1 5 年 類 類 良 陸 陸 類 來 行 陸 來 行 不 陸 兩 類 類 更 率 陸 陸 數 陸 兩 類 不 兩 類 離 度 陸 錄 兩 3 6 泥 (Devonian) 類 (Subclass Labyrinthodontia) (Ichthyosteg ) (Acanthosteg Acanthostegidae) 兩 類 若 度 來 略

More information

ELOXATINE

ELOXATINE 025243 025242 20 25 capsules 20 mg capsules 25 mg 1. 療 療 療 行 參 療 療 療 療 療 2. 量 (dose-limiting toxicitydlt)( 參 4. 不良 )fluorouracil 類 不 留 臨 査數 行臨 査 3. 査 切 切 (malaise)

More information



 94 年 類 療 療 1 5111 8 1 不 80 1.25 2 不 1 列 不 參 frame of reference for visual perception cognitive analysis skills visual learning visual attention visual memory visual discrimination 2 Ayres prone extension

More information

untitled

untitled 98 年 不 療 理 3111 81 類 理 療 理 療 療 療 療 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 度 chronaxie 1.5 3 20 100 流 度 2 刺 療 列 金 3 列 5 ma 16 ma 離 8 ma 流量 流 流 更 4 離 列 離 離 離 離 5 利 oscilloscope 來 量刺 列 刺 流 刺 刺 兩 流 刺 兩 6 列 不 度 strength-duration

More information

untitled

untitled 95 年 理 療 3115 6 1 類 療 療 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 37 列 47 mmhg 量 43.9 mg 度 100% 度 100% 2 diffusion 力 20 1/20 200 1/200 3 37 760 mmhg 力 數 solubility coefficient 0.023 ml 列 Dalton s law Fick s law Henry

More information

untitled

untitled 異 欄 異 欄.. 1 Invega tab 3 mg/tab paliperidone 精神 2009/4/20 2009 年 4.. 2 異 Buspar 10 mg/tab Diovan 80 mg/tab Sofradex Ear Soln 8 ml/btl buspirone HCl valsartan ml framycetin sulphate 5 mg, gramicidin 0.05

More information

untitled

untitled 年 理 療 類 臨 復 復 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 列 異 parafunction 力 異 力量 2 D T 力量 異 都 行 sibilant 3 狀 papillary hyperplasia 4 列 錄 參 錄 5 列 chlorhexidine 不 6 列 occlusion rims 念 類 狀 度 不 狀 立 狀 7 蠟 ridge crest 參 參 8 列

More information

untitled

untitled 參 料 1996 樂 理論 北 樂 1996Easy to know MIDI 北 1997 樂 論 北 1996 樂 北 樂 禮 1990 樂理理論 北 樂 1991 北 隆 1996 樂 復 1996 理論 女 例 北 流 1981 理 北 2002 樂理 北 樂 梁 1989 兩 理論 北 流 2001 北 李 1989 行 北 1999 80 錄 年 北 葉龍 2001 1985-1999

More information

untitled

untitled 練 度 率 1 1 2 1 立 練 2 立 練 不 度 6 4 女 2 年 24±1.1 169±6.2cm 66±8.1kg (21%) (15%) 行 10 V4 量 2min 30s 兩 48 參數 率 度 數 t 行兩 (15%) 5 (5x) +0.42mmol/l (p>0.05) 1min(E1) 7min(E7) 10min 降 度 15min 率 (p>0.05) 論 兩 率 狀

More information

untitled

untitled 96 年 理 療 3103 8 1 類 臨 療 復 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 臨 列 不 了 刺 度 刺 度 療 了 度 刺 度 2 洞 test cavity 列 洞 度不 冷 不 3 療 列 不 度 離 4 列 不 老 料 度 量 5 易 列 裂 mid-root fracture concussion intrusive luxation 裂 complicated

More information

untitled

untitled 96 年 理 療 4103 8 1 類 臨 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 titanium 金 titanium oxide 度 1000 A 2000 A 3000 A 4000 A 2 列 B B 泌 10 5 10 7 hypochlorite B 類 phenols B 3 列 nerve block anesthesia 理 R t posterior alveolar

More information

untitled

untitled Vol. 34, No. 02 102 年 2 15 異 欄 Prolia 60 mg/1 ml /syrg denosumab 8 PRO1FAG0 214 2013/1/18 異 Saline sodium chloride 更 2013/2/1 Prefilled Inj 2 4 0.9% 不 10 ml/syrg 領流 3 ml/syrg Azol 250 mg/tab acetazolamide

More information

untitled

untitled 年 類 神 精神 復 臨 例 ˍˍˍˍˍˍ 不 50 2 2 1~50 不 1 60 V 1 -V 6 ST 降 不 列 療 不 morphine heparin nitrate rtpa 2 35 車 行 X HLA-B27 類 (Rheumatoid factor) 3 糖尿 糖 不 X 葉 minor fissure Klebsiella pneumoniae Streptococcus pneumoniae

More information

6

6 六 6.1 裡 不 列 1. Converge Webpage Ranking Algorithms 數 數 兩 不 裡 利 PageRank 來 數 2. Fixed dataset 不 料 6.1 3. Personal website identification 率 2 來 兩 數 率 1. 數 力 10 論 力 論 力 1~5 論 力 數 2. 率 4 4 率 76 不 Recall 來

More information

心臟疾病細胞治療之臨床試驗簡介

心臟疾病細胞治療之臨床試驗簡介 療 臨 1 療 療 FDA 1991 年 量 Point to Consider in Human Somatic Cell Therapy and Gene Therapy 療 陸 autologous cell 量 (1996) 異 xenotransplantation (1996, 1997) 量 (1997) 1998 年 Guidance for Human Somatic Cell Therapy

More information

untitled

untitled 94 年 類 療 1 1103 8 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 Axonotmesis 復 度 24 4-4.5 48 3-3.5 24 2-2.5 48 1-1.5 2 列 理 利 行 endotracheal intubation 度 3 列 dry heat moist heat 更 ethylene oxide 度 50 3 殺 易 4 神 神 anterior palatine

More information

untitled

untitled 98 年 不 療 理 4101 10 1 類 神 精 神 臨 例 倫 理 2 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 47, XY, +21 18 年 來 年 列 療 識 倫 理 不 不 行 2 6 5 exudate 肋 5 肋 3 列 Weil-Felix reaction Heterophile antibody test Throat bacteria culture Throat

More information

untitled

untitled 異 欄 Aptivus 250 mg/cap tipranavir 類 2008/9/19 Recormon 10000 IU/0.6 ml /syrg Zaditen eye drops 異 epoetin beta genetical recombinant ketotifen fumarate 195 Eprex 4000 IU/1 ml /vial ( ) 195 2008/9/17 2008/9/10

More information

untitled

untitled (4 30 ) 9:30-16:40 參! ( 路 22 ) 倫理 律 理 錄 車 車 參 02-25119540 9:40~10:20 Strategies to rescue the poor quality oocyte The outcome of ICSI of fresh versus 10:20~11:00 cryopreserved sperm obtained from sperm

More information

語言學研究所籌備處

語言學研究所籌備處 年度 六年 立 年度 立 年度 類 六 讀 論 論 列 北 1. 北 歷 2. 兩 理 3. 來 北 索 4. 料 北 北 諸 料 料 類 ( I ) 1. 類 類參 2. 類 類 3. 論 呂 ( 不 說 ) 類 576,000 4. 利 類 行 理 列 類 類 料 ( 參見 ( )) 料 (event structure) 理論 理論 行 行 識 參見 ( ) (representaion) 理論

More information

윈도우시스템프로그래밍

윈도우시스템프로그래밍 객체지향프로그래밍응용 Chap 5. 사용자인터페이스 (#1) 2012.10.11. 오병우 컴퓨터공학과금오공과대학교 Contents Menu ToolBar DialogBar StatusBar MessageBox Mouse Cursor Program Icon CFormView Department of Computer Engineering 2 응용프로그램의처리제어

More information

untitled

untitled 年 類 復 泌尿 精神 ˍˍˍˍˍˍˍ 不 80 1.25 2 1~80 不 1 12 流 見 異 不 不 2 hcg (progesterone) 狀 3 見 不 滑 異 4 20 女 G 1 P 0 28 (crown-rump length, CRL) 5.0 列 8 11 14 17 5 RU486 流 (estrogen) 6 30 年 落 狀 列 Sheehan Sheehan 卵 Cushing

More information

untitled

untitled 96 年 不 療 理 5111 8 1 類 理 療 理 療 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 列 mechanism of injury 索 whiplash injurytrauma 老 年 罹 cervical spondylosis 廓 thoracic outlet syndrome sustained postures 廓 度 overuse 2 列 不 cervical

More information

untitled

untitled 料 錄 類 林 粒 粒 滑 料 來 不 切 拉 切 猪 類 裡 老 說 老 來 殺 爐 切 切 類 料 不 惡 不 利 句 說 利 B12 不 殺 勞 力 殺 殺 濾 力 更 復 復 http://tw.myblog.yahoo.com/jw!mjufwluzlwk_wv4b_mzsu7y-/article?mid=401 http://www.relativehumanity.com.tw/cm/cm237.htm

More information

untitled

untitled 94 年 3101 8 1 類 復 泌尿 精神 1 不 80 1.25 2 不 1 hypoxic ischemic encephalopathy 列 ph 7.00 Apgar score 5 0-3 2 Toxic shock syndrome Gonorrhea Staphylococcus aureus Hemolytic streptococcus Chlamydia 3 53 女 兩 卵

More information

untitled

untitled 96 年 理 療 1109 8 1 類 理 療 理 療 理 力 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 renal pyramid renal cortex renal papilla 2 列 不 renal medulla 利 降 descending limb of loop of Henle renal corpuscle 利 thin segment of loop of Henle

More information

untitled

untitled 96 年 不 療 理 1111 6 1 類 理 療 理 療 理 力 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 trigone of the bladder inferior angle posterior wall inferolateral wall superior wall 2 列 不 肋 intercostal nerve rectus abdominis 肋 external intercostals

More information

untitled

untitled 96 年 不 療 理 4101 10 1 類 神 精 神 臨 例 倫 理 2 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 8 年 列 Down syndrome Turner syndrome 易 X fragile X syndrome 尿 phenylketonuria 2 列 type 1 neurofibromatosis autosomal recessive de novo mutation

More information

untitled

untitled 類 不 立 理 都 不論 (BFHI) 都 勵 不 利 了 行 糖 行 療 了 列 勵 女 理 理 女 女 勵 女 勵 女 不 切 女 療 例 理 理 了 不 量 了 例 累 冷 刺 了 1 陸 都 (apparent life threatening event) 年 了 立 錄 料 了 不 都 零 理 料 立 錄 數 37 狀 良 Apgar 數 8 (collapse)( 神 不 ) 療 料

More information

untitled

untitled 生物學 1. 2. 1 卵 Estrogen LH 卵 2 oxytocin 3 泌 泌 4 路 路 路 5 6pepsingon pepsin 7 T h 泌 IL2 3. 4. 5. Na +,C1-6. K + 2- HPO 4 7. 藍綠 (cyanobacteria) 8. RNA 9. IgM 10. 量 Rubisco 11. 量 : (Collagen) 12. 量 : (Connective)

More information

untitled

untitled 理 (3) 類 CNPH93-01 行 93 年 1 1 93 年 12 31 切 蘭 參 劉 李 林 嵐 行 94 年 2 27 0 不 了 酪 (tyrosine) 酪 列 兩 eumelanin phaeomelanin (1) 酪 率 (2) 了酪 參 兩 酪 (tyrosine related-protein; TRP) TRP-1 (DHICA oxidase) TRP-2 (dopachrome

More information

1 2 3 寧療 度 度 療 療 若 理 易 寧 練 力 度更 度 力 來 寧 率 力 療 率 療 行 度 寧 療 寧 例 說 度 省 力 領 理念 來 療 若 度 力 度 寧療 Key Words supervision training medical team

1 2 3 寧療 度 度 療 療 若 理 易 寧 練 力 度更 度 力 來 寧 率 力 療 率 療 行 度 寧 療 寧 例 說 度 省 力 領 理念 來 療 若 度 力 度 寧療 Key Words supervision training medical team 安寧緩和醫療團隊督導制度之探討與應用 Discussion and Application of Supervisory System for Palliative Care doi:10.6537/tjhpc.2009.14(1).6 安寧療護雜誌, 14(1), 2009 Taiwan Journal of Hospice Palliative Care, 14(1), 2009 作者 /Author:

More information

untitled

untitled 95 年 類 療 療 1 療 3401 8 1 不 80 1.25 2 不 1 療 unheated humidifier 度 理 降 evaporative cooling 拉 律 Graham s law 羅 律 Avogadro s law 律 Fick s law 2 0 列 度 solubility oxygen O 2 carbon dioxide CO 2 nitrogen N 2 nitric

More information

untitled

untitled 94 年 類 理 理 1 ˍˍˍˍˍˍˍ 5217 8 1 不 80 1.25 2 不 1 糖 fast glycolytic fiber slow oxidative fiber ATP 來 更 力 2 列 論 拉 stretch reflex muscle spindle 力 度都 力 3 列 enterokinase 降 chymotrypsin lipase pepsin 糖 sucrase

More information



 98 年 不 療 理 98 年 6109 8 1 類 療 理 1 不 80 1.25 2 不 1 列 FDG 糖 glucose 糖 glucose transporter glucose-6-phosphate 糖 glucose transporter 2 列 療 Ga-67 Sr-89 I-123 Tl-201 3 輻 列 料 兩 不 漏 不 龍 輻 不 不 易 4 PET/CT SPECT/CT

More information

untitled

untitled 年 年 年來 amphotericin B(ampho-B) flucytosine 來 療 切 療 不 1998 年 不 識 1 99% 療 88% ampho-b Fluconazole 2,3 說 類 I. Amphotericin B Ampho-B polyene antibiotics ergosterol (sterol) 裂 療 念 (candidiasis) (Aspergillosis)

More information

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google

More information

untitled

untitled 96 年 理 療 5109 8 1 類 理 療 理 療 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 列 不 廓 thoracic outlet syndrome 狀 度 狀 hyperabduction syndrome 肋 狀 cervical rib syndrome 狀 pectoralis minor syndrome 度 狀 hyperflexion syndrome 2 來 理

More information

Programming hwp

Programming hwp 6 장 MDI 응용프로그램 MDI 응용프로그램의형태 응용프로그램마법사 (AppWizard) 가생성하는 MDI 응용프로그램의주실행창을나타내는객체는 CFrameWnd에서파생된클래스인스턴스이며, 기본외형은아래그림과같이메뉴와툴바를포함한다. 문서내용을보여주는뷰들은이창의클라이언트영역안에자식창으로만들어지는윈도우들을통해표시된다. 주실행창의클라이언트영역안에는여러개의자식창이만들어질수있으며,

More information

Dialog Box 실행파일을 Web에 포함시키는 방법

Dialog Box 실행파일을 Web에 포함시키는 방법 DialogBox Web 1 Dialog Box Web 1 MFC ActiveX ControlWizard workspace 2 insert, ID 3 class 4 CDialogCtrl Class 5 classwizard OnCreate Create 6 ActiveX OCX 7 html 1 MFC ActiveX ControlWizard workspace New

More information

[제1강] 텍스트를 입력하세요

[제1강] 텍스트를  입력하세요 제 8 강 MFC 프레임워크 (1) Visual C++ 프로그래밍 컴퓨터과학과 김강현교수 제 8 강의학습내용 MFC (Microsoft Foundation Class) 기본구조 MFC클래스들의계층구조윈도우프로그램과메시지 (Message) hwnd의위치 Visual C++ 에서정의된자료형 MFC 클래스살펴보기 MFC(Microsoft Foundation Class)

More information

untitled

untitled 不 年 療 理 不 類 療 療 ˍˍˍˍˍ 不 1.25 2 1~80 不 1 易 CO 2 列 (inspiration : expiration) auto-peep 2 1 1 1 1 2 1 3 2 略 (protective ventilatory strategy) 列 度 Barotrauma (repeated opening and closure) shear injury 不

More information

untitled

untitled 年 類 2101 6 1 不 80 1.25 2 不 1 列 不 hypokalemia 見 利尿 度 離 狀 2 列 X 離 free air 流 diagnostic peritoneal lavage 不 CT scanfalse negative ultrasound 3 離 Ca ++ 列 離 度 2.2 2.7 mg/dl 9 11 mmol/l 離 狀 離 狀 stupor 類 神 狀

More information



 98 年 不 療 理 98 年 5101 8 1 類 泌尿 臨 例 倫理 2 不 80 1.25 2 不 1 25 列 heart-lung transplantation end-stage emphysema ischemic heart disease primary pulmonary hypertension 2 heparin 列 理 activated clotting time 復

More information

Microsoft PowerPoint - hci2-lecture5-messagemap.ppt

Microsoft PowerPoint - hci2-lecture5-messagemap.ppt Windows 와 C++ MFC Message Map HCI Programming 2 (321190) 2008년가을학기 10/14/2008 박경신 C++ 의다형성 (Polymorphsim) 기반클래스의어떤멤버함수를파생클래스에서재정의 (overriding) 하기위해서는기반클래스의그멤버함수가가상함수 (virtual function) 로정의되어야함 MFC 의 CWnd

More information



 98 年 不 療 理 類 1 3109 8 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 利 kvp mas noise 粒度 film graininess structure mottle 量 quantum mottle 度 optical density 2 DR 數 fill factor TFT 例 例 來 X 例 3 利 0.3mm X 行 離 SID 100cm 離 20cm

More information

untitled

untitled 95 年 理 療 6115 6 1 類 療 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 X 讀 Silhouette sign 若 不 葉 葉 葉 lingular segment 葉 anterior segment 葉 2 讀 X 3 cm solitary pulmonary nodule 惡 刺狀 spiculated well-defined thin wall 狀 popcorn-like

More information

Microsoft Word - hci07-final-answer.doc

Microsoft Word - hci07-final-answer.doc 기말고사 담당교수 : 단국대학교멀티미디어공학전공박경신 답은반드시답안지에기술할것. 공간이부족할경우반드시답안지몇쪽의뒤에있다고명기한후기술할것. 그외의경우의답안지뒤쪽이나연습지에기술한내용은답안으로인정안함. 답에는반드시네모를쳐서확실히표시할것. 답안지에학과, 학번, 이름외에본인의암호를기입하면성적공고시학번대신암호를사용할것임. 1. 다음문장의내용이맞으면 True, 틀리면 False를표시하시오.

More information

untitled

untitled 8 1 年 年 理 療 類 泌 尿 復 ˍˍˍˍˍˍˍ 不 100 1 2 不 1 列 Radiation proctocolitis 裂 irradiation 10 年 復 理 progressive vasculitis 狀 Tenesmus bleeding 2 度 Ischiococcygeus muscle Puborectalis muscle Internal sphincter Superficial

More information

Programming hwp

Programming hwp 5 장 SDI 응용프로그램 5.1 문서 / 뷰구조와 SDI 응용프로그램 문서 / 뷰구조 SDI 응용프로그램유형또는 MDI 응용프로그램유형이선택될경우응용프로그램마법사 (AppWizard) 가생성하는프로그램구조는문서 / 뷰 (Document/View) 구조를중심으로이루어진다. 이러한응용프로그램들은문서의전체또는일부를메모리에읽어들인후그내용을어떤형태로든사용자에게보여준다.

More information

untitled

untitled 95 年 療 類 療 1 6301 7 1 ˍˍˍˍˍˍˍ 不 80 1.25 2 不 1 列 見 50 Sarcoidosis Langerhans cell histiocytosis Idiopathic pulmonary fibrosis Lymphangioleiomyomatosis 2 列 Langerhans cell histiocytosis pulmonary alveolar

More information



 99 年 理 療 99 年 1107 6 1 類 理 療 理 療 理 力 1 不 80 1.25 2 不 1 列 polar bodies 數 裂 數 裂 2 列 glans penis 3 列 4 列 anal column 5 列 肋 right hypochondriac region 6 列 不 狀 goblet cells mucous neck cells parietal cells

More information

untitled

untitled 94 年 類 1 2101 7 1 不 80 1.25 2 不 1 若 PT Prothrombin time aptt activated partial thromboplastin time proximal intrinsic pathway factors Vit. K-dependent factors 不 heparin aspirin 2 列 不 離 度 spironolactone

More information