<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>MY STORY</title>
		<link>http://www.toggiya.com/</link>
		<description></description>
		<language>ko</language>
		<pubDate>Wed, 17 Aug 2011 06:48:42 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<image>
		<title>MY STORY</title>
		<url><![CDATA[http://cfs9.tistory.com/upload_control/download.blog?fhandle=YmxvZzExNDM1MEBmczkudGlzdG9yeS5jb206L2F0dGFjaC8wLzY0LmpwZw%3D%3D]]></url>
		<link>http://www.toggiya.com/</link>
		<description></description>
		</image>
		<item>
			<title>특정 폴더의 파일 찾기</title>
			<link>http://www.toggiya.com/206</link>
			<description>&lt;P style=&quot;LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&lt;br /&gt;
&lt;FONT color=#000000&gt;특정 폴더의 파일들을 검색하여 리스트 박스에 뿌려 주기.. &lt;br /&gt;
&lt;/FONT&gt;&lt;br /&gt;
&lt;FONT color=#000000&gt;아래 코드는 텍스트 상자로 부터 폴더명을 입력 받고, 폴더를 검색하여 폴더가 존재 하고&lt;br /&gt;
&lt;br /&gt;그 하위에 파일이 존재 하면, 리스트 박스에 파일명을 뿌려 준다.&lt;/FONT&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
void CNestingInputPg::OnEnChangeBlocktext()&lt;br /&gt;
&lt;br /&gt;{&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;UpdateData(TRUE);&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;m_PartFileList.ResetContent();&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;m_Block = m_BlockText;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;CString path;&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;path.Format(&quot;c:\\CADPart\\%s\\%s&quot;,m_Hosun,m_Block);&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;CFileFind finder;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;bool working = finder.FindFile( path + &quot;\\*.*&quot; );&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;while ( working )&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;{&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 8em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;working = finder.FindNextFile();&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 8em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;if (!finder.IsDirectory())&lt;br /&gt;
&lt;br /&gt;{&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 12em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;CString curfile = finder.GetFileName();&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 12em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;m_PartFileList.AddString(curfile);&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 8em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;}&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;} &lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;finder.Close();&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;}&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;FONT color=#000000&gt;혹 파일명이 아닌, 폴더명을 검색하고 싶다면.. 아래와 같이 하면 된다.&lt;br /&gt;
&lt;br /&gt;아래는 폴더를 검색하여 콤보 박스에 뿌려 주는 코드 이다.&lt;br /&gt;
&lt;br /&gt;하위 폴더는 검색에서 제외 시켰다.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color=#c84205&gt;&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;void CNestingInputPg::OnCbnDropdownHosuncombo()&lt;br /&gt;
&lt;br /&gt;{&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;m_HosunCombo.ResetContent();&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;CString path;&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;path.Format(&quot;c:\\CADPart\\*.*&quot;);&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;CFileFind finder;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;bool working = finder.FindFile(path);&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;while ( working )&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;{&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 8em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;&amp;nbsp;working = finder.FindNextFile();&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 8em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;&amp;nbsp;if(finder.IsDots())&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 8em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;continue;&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 8em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;&amp;nbsp;CString curfile = finder.GetFileName();&lt;br /&gt;
&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 8em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;&amp;nbsp;m_HosunCombo.AddString(curfile);&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;} &lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;MARGIN-LEFT: 4em; LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;&amp;nbsp;finder.Close();&lt;/FONT&gt;&lt;/P&gt;
&lt;P style=&quot;LINE-HEIGHT: 0.8&quot;&gt;&lt;FONT color=#c84205&gt;}&lt;/FONT&gt;&lt;/P&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-206-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-206-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>C++/MFC</category>
			<category>CFileFind</category>
			<category>mfc</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/206</guid>
			<comments>http://www.toggiya.com/206#entry206comment</comments>
			<pubDate>Mon, 17 Nov 2008 10:18:36 +0900</pubDate>
		</item>
		<item>
			<title>Dialog 기반 Modeless 상자에서 메인 Dialog 함수 사용하기</title>
			<link>http://www.toggiya.com/205</link>
			<description>이것때문에 하루 종일 AfxGetMainWnd() 에 대해 여기 저기 찾아 해매고 다녔었다.&lt;br /&gt;
우리 네이버 형님께 질문해 봐도.. MDI 나 SDI 기반에서 사용하는 방법만 자세히 나와 있더군.. &lt;br /&gt;
나같은 MFC 초보에게는 그걸 이해하고 내가 짜는 프로그램에 적용시키는데 많은 시간이 소요가 된다.&lt;br /&gt;
나중에 다시 사용해야 하는데 잊어 버릴수 있기에.. 이런건 어디든 즉각 즉각 자료를 남겨 둬야...&lt;br /&gt;
&lt;br /&gt;
메인 Dialog 가 TestDig 이고.. Modeless Dialog 가 Flange1Bevel 일때... &lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: rgb(200, 66, 5);&quot;&gt;void CFlange1Bevel::ChangeBevelColor(void)&lt;/span&gt;&lt;br style=&quot;color: rgb(200, 66, 5);&quot;&gt;&lt;span style=&quot;color: rgb(200, 66, 5);&quot;&gt;{&lt;/span&gt;&lt;br style=&quot;color: rgb(200, 66, 5);&quot;&gt;&lt;span style=&quot;color: rgb(200, 66, 5);&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CTestDlg *Test = (CTestDlg*)AfxGetMainWnd();&lt;/span&gt;&lt;br style=&quot;color: rgb(200, 66, 5);&quot;&gt;&lt;span style=&quot;color: rgb(200, 66, 5);&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Test-&amp;gt;BC = 1;&lt;/span&gt;&lt;br style=&quot;color: rgb(200, 66, 5);&quot;&gt;&lt;span style=&quot;color: rgb(200, 66, 5);&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Test-&amp;gt;View_Test();&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br style=&quot;color: rgb(200, 66, 5);&quot;&gt;&lt;span style=&quot;color: rgb(200, 66, 5);&quot;&gt;}&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
이렇게 간단한걸... 난 몇시간이나 허비한건지... &lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-205-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-205-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>C++/MFC</category>
			<category>AfxGetMainWnd()</category>
			<category>mfc</category>
			<category>Modeless</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/205</guid>
			<comments>http://www.toggiya.com/205#entry205comment</comments>
			<pubDate>Mon, 27 Oct 2008 18:39:42 +0900</pubDate>
		</item>
		<item>
			<title>RSS 리더기 동작 확인 테스트</title>
			<link>http://www.toggiya.com/204</link>
			<description>동작 확인용 글... &lt;br /&gt;
&lt;br /&gt;잘 될까?&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-204-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-204-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://i1.daumcdn.net/cfs.tistory/v/0/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>Any Board</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/204</guid>
			<comments>http://www.toggiya.com/204#entry204comment</comments>
			<pubDate>Wed, 22 Oct 2008 15:26:15 +0900</pubDate>
		</item>
		<item>
			<title>3박 5일간의 태국여행 - 기타</title>
			<link>http://www.toggiya.com/203</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/15/tistory/2008/08/21/11/44/48acd6a86f85f&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/17/tistory/2008/08/21/11/44/48acd6a6426bf&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/24/tistory/2008/08/21/11/44/48acd6a3f3e8a&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/9/tistory/2008/08/21/11/45/48acd6d795b24&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;417&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/1/tistory/2008/08/21/11/46/48acd6e882b9f&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;</description>
			<category>In Thailand</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/203</guid>
			<comments>http://www.toggiya.com/203#entry203comment</comments>
			<pubDate>Thu, 21 Aug 2008 11:38:36 +0900</pubDate>
		</item>
		<item>
			<title>3박 5일간의 태국여행 - 산호섬</title>
			<link>http://www.toggiya.com/202</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/14/tistory/2008/08/21/11/26/48acd26719142&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/15/tistory/2008/08/21/11/26/48acd265375ec&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/14/tistory/2008/08/21/11/26/48acd2637ec68&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/2/tistory/2008/08/21/11/26/48acd2618a161&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/30/tistory/2008/08/21/11/26/48acd25fb69f0&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/11/tistory/2008/08/21/11/26/48acd25e2a23c&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/10/tistory/2008/08/21/11/26/48acd259ac3b1&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;822&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/7/tistory/2008/08/21/11/26/48acd25ca45d7&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;</description>
			<category>In Thailand</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/202</guid>
			<comments>http://www.toggiya.com/202#entry202comment</comments>
			<pubDate>Thu, 21 Aug 2008 11:21:22 +0900</pubDate>
		</item>
		<item>
			<title>3박 5일간의 태국여행 - 선상디너 2편</title>
			<link>http://www.toggiya.com/201</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/32/tistory/2008/08/20/21/25/48ac0d3f0c7aa&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/3/tistory/2008/08/20/21/25/48ac0d438ce68&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/8/tistory/2008/08/20/21/25/48ac0d421a406&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/9/tistory/2008/08/20/21/25/48ac0d40593dd&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/11/tistory/2008/08/20/21/25/48ac0d3db7fe2&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/20/tistory/2008/08/20/21/25/48ac0d3b57d1b&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/17/tistory/2008/08/20/21/25/48ac0d3a3858e&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/10/tistory/2008/08/20/21/25/48ac0d3836e8d&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/28/tistory/2008/08/20/21/25/48ac0d362d4e8&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/7/tistory/2008/08/20/21/25/48ac0d337382e&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/19/tistory/2008/08/20/21/25/48ac0d324277c&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/4/tistory/2008/08/20/21/25/48ac0d311bc57&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/18/tistory/2008/08/20/21/25/48ac0d2f874dc&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs8.tistory.com/image/8/tistory/2008/08/20/21/25/48ac0d2e41aab&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;</description>
			<category>In Thailand</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/201</guid>
			<comments>http://www.toggiya.com/201#entry201comment</comments>
			<pubDate>Wed, 20 Aug 2008 21:18:02 +0900</pubDate>
		</item>
		<item>
			<title>3박 5일간의 태국여행 - 선상디너 1편</title>
			<link>http://www.toggiya.com/200</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/6/tistory/2008/08/21/16/25/48ad185be84e2&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;466&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/20/tistory/2008/08/21/16/25/48ad1856c9599&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/25/tistory/2008/08/20/21/18/48ac0b93b6e38&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;466&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/6/tistory/2008/08/20/21/18/48ac0b99013f6&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;466&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/22/tistory/2008/08/20/21/18/48ac0ba0a4f7f&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/6/tistory/2008/08/20/21/18/48ac0ba403754&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/16/tistory/2008/08/20/21/18/48ac0baab3a79&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/9/tistory/2008/08/20/21/18/48ac0bb032d9d&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;461&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/17/tistory/2008/08/20/21/18/48ac0bae5fc04&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/19/tistory/2008/08/20/21/18/48ac0bac52c7f&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/10/tistory/2008/08/20/21/18/48ac0ba978e8c&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/20/tistory/2008/08/20/21/18/48ac0ba81b380&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/25/tistory/2008/08/20/21/18/48ac0ba6d0ed2&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/30/tistory/2008/08/20/21/18/48ac0ba248de7&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/31/tistory/2008/08/20/21/18/48ac0b9eb3986&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/15/tistory/2008/08/20/21/18/48ac0b9cef22a&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/21/tistory/2008/08/20/21/18/48ac0b9ad1e2d&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;822&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/16/tistory/2008/08/20/21/18/48ac0b973f9c7&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/5/tistory/2008/08/20/21/18/48ac0b956ba12&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/23/tistory/2008/08/20/21/18/48ac0b91995c7&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;</description>
			<category>In Thailand</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/200</guid>
			<comments>http://www.toggiya.com/200#entry200comment</comments>
			<pubDate>Wed, 20 Aug 2008 21:14:55 +0900</pubDate>
		</item>
		<item>
			<title>3박 5일간의 태국여행 - 코끼리트래킹</title>
			<link>http://www.toggiya.com/199</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/35/tistory/2008/08/21/11/55/48acd92a7b31c&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;466&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/29/tistory/2008/08/20/21/18/48ac0b9fda9c0&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;822&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/1/tistory/2008/08/20/21/18/48ac0b9c80ce3&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;822&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/17/tistory/2008/08/20/21/18/48ac0b9974c71&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;</description>
			<category>In Thailand</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/199</guid>
			<comments>http://www.toggiya.com/199#entry199comment</comments>
			<pubDate>Wed, 20 Aug 2008 21:11:08 +0900</pubDate>
		</item>
		<item>
			<title>3박 5일간의 태국여행 -  생일파티</title>
			<link>http://www.toggiya.com/198</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/20/tistory/2008/08/20/21/16/48ac0b2574337&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/12/tistory/2008/08/20/21/16/48ac0b2311d29&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs7.tistory.com/image/31/tistory/2008/08/20/21/16/48ac0b20aea2b&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;</description>
			<category>In Thailand</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/198</guid>
			<comments>http://www.toggiya.com/198#entry198comment</comments>
			<pubDate>Wed, 20 Aug 2008 21:09:12 +0900</pubDate>
		</item>
		<item>
			<title>3박 5일간의 태국여행 - 농눅빌리지</title>
			<link>http://www.toggiya.com/197</link>
			<description>&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/12/tistory/2008/08/20/21/12/48ac0a1864bc0&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/24/tistory/2008/08/20/21/12/48ac0a1623145&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/24/tistory/2008/08/20/21/12/48ac0a12f034a&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/20/tistory/2008/08/20/21/12/48ac0a10ec039&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/20/tistory/2008/08/20/21/11/48ac0a0d35a79&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;822&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/21/tistory/2008/08/20/21/11/48ac0a0abe165&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;467&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;img src=&quot;http://cfs9.tistory.com/image/7/tistory/2008/08/20/21/12/48ac0a1a6d91e&quot; alt=&quot;사용자 삽입 이미지&quot; height=&quot;822&quot; width=&quot;620&quot;/&gt;&lt;/div&gt;&lt;br /&gt;</description>
			<category>In Thailand</category>
			<author>oo토끼oo</author>
			<guid>http://www.toggiya.com/197</guid>
			<comments>http://www.toggiya.com/197#entry197comment</comments>
			<pubDate>Wed, 20 Aug 2008 21:07:34 +0900</pubDate>
		</item>
	</channel>
</rss>

