OSDN Git Service

Version 5.91
[vbslib/main.git] / _src / _vbslib manual.files / vbs_memo.files / vbs_memo_12.html
index d6aea44..e1553a8 100644 (file)
@@ -87,1191 +87,1271 @@ function  out( text ){ text.style.display = "none"; }
 \r
 <PAGESET>\r
  \r
-<!-- page 184 --> \r
+<!-- page 176 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p184" class="to_tree" style="margin-top:-11px;" onClick="selectTreeElem( '184' );">\81©</A>\r
-<A href="#svgcats_vml_p185" class="to_next_page" style="margin-top:-11px;">\81¥</A>\r
-<A href="vbs_memo_11.html#svgcats_vml_p183" class="to_prev_page" style="margin-top:-11px;">\81£</A>\r
+<A id="svgcats_vml_p176" class="to_tree" style="margin-top:-11px;" onClick="selectTreeElem( '176' );">\81©</A>\r
+<A href="#svgcats_vml_p177" class="to_next_page" style="margin-top:-11px;">\81¥</A>\r
+<A href="vbs_memo_11.html#svgcats_vml_p175" class="to_prev_page" style="margin-top:-11px;">\81£</A>\r
 <DIV style="position:absolute; margin-left:20px; margin-top:-16px;">\r
 <A id="page_group_top" href="vbs_memo_11.html#page_group_bottom" style="text-decoration:none;">\81ª</A></DIV>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:0px; width:581px; height:858px;" fillcolor="white"/>\r
-<DIV id="text184_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:17px; line-height:15px; white-space:nowrap">\r
-<A name="EventResponders_ex">\r
-EventResponders \82Ì\8eÀ\91\95\97á</A></DIV>\r
-<v:rect style="position:absolute; margin-left:40px; margin-top:51px; width:364px; height:445px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text184_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:48px; margin-top:57px; line-height:15px; white-space:nowrap">\r
-Class&nbsp; EventResponders<BR/>\r
-&nbsp; Public&nbsp; Responders<BR/>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:0px; width:510px; height:1252px;" fillcolor="white"/>\r
+<DIV id="text176_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:17px; line-height:15px; white-space:nowrap">\r
+<A name="DestroyerClass_1">\r
+DestroyerClass (version 1)</A></DIV>\r
+<v:rect style="position:absolute; margin-left:29px; margin-top:273px; width:394px; height:835px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text176_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:37px; margin-top:279px; line-height:15px; white-space:nowrap">\r
+Case3<BR/>\r
+WScript.echo&nbsp; "End of Main"<BR/>\r
+WScript.echo&nbsp; "\82à\82µ\81A\82±\82±\88È\8d~\82Å\83f\83X\83g\83\89\83N\83^\81[\82ª\93®\82­\82Æ\82«\82Í\81A"+_<BR/>\r
+&nbsp; &nbsp; "\83v\83\8d\83O\83\89\83\80\8fI\97¹\8e\9e\82É\82·\82×\82Ä\82Ì\83I\83u\83W\83F\83N\83g\82ð\8dí\8f\9c\82·\82é"+_<BR/>\r
+&nbsp; &nbsp; "\82±\82Æ\82É\82æ\82é\83f\83X\83g\83\89\83N\83^\81[\8cÄ\82Ñ\8fo\82µ\82Å\82·\81B"<BR/>\r
 <BR/>\r
-&nbsp; Private Sub&nbsp; Class_Initialize()<BR/>\r
-&nbsp; &nbsp; ReDim&nbsp; Responders(-1)<BR/>\r
-&nbsp; End Sub<BR/>\r
+Sub&nbsp; Case3()<BR/>\r
+&nbsp; &nbsp; WScript.echo&nbsp; "Case3:"<BR/>\r
+&nbsp; &nbsp; Set a_object = new A_Class : a_object.CaseName = "Case3"<BR/>\r
+&nbsp; &nbsp; Set b_object = new B_Class : b_object.CaseName = "Case3"<BR/>\r
+&nbsp; &nbsp; Set destroyer = new_Destroyer( a_object )<BR/>\r
+&nbsp; &nbsp; Set a_object.Reference = b_object<BR/>\r
+&nbsp; &nbsp; Set b_object.Reference = a_object<BR/>\r
+End Sub<BR/>\r
 <BR/>\r
-&nbsp; Public Sub&nbsp; Add( Func, Object )<BR/>\r
-&nbsp; &nbsp; Dim&nbsp; res : Set res = new EventResponder<BR/>\r
 <BR/>\r
-&nbsp; &nbsp; ReDim Preserve&nbsp; Responders( UBound( Responders ) + 1 )<BR/>\r
-&nbsp; &nbsp; Set Responders( UBound( Responders ) ) = res<BR/>\r
-&nbsp; &nbsp; res.Func = Func<BR/>\r
-&nbsp; &nbsp; res.Object = Object<BR/>\r
-&nbsp; End Sub<BR/>\r
+Function&nbsp; new_Destroyer( Target )<BR/>\r
+&nbsp; &nbsp; Set new_Destroyer = new DestroyerClass<BR/>\r
+&nbsp; &nbsp; Set new_Destroyer.Target = Target<BR/>\r
+End Function<BR/>\r
 <BR/>\r
-&nbsp; Public Sub&nbsp; Calls( Caller, Args )<BR/>\r
-&nbsp; &nbsp; Dim&nbsp; res<BR/>\r
+Class&nbsp; DestroyerClass<BR/>\r
+&nbsp; &nbsp; Public&nbsp; Target<BR/>\r
 <BR/>\r
-&nbsp; &nbsp; For Each res&nbsp; In Responders<BR/>\r
-&nbsp; &nbsp; &nbsp; res.Func&nbsp; res.Object, Caller, Args<BR/>\r
-&nbsp; &nbsp; Next<BR/>\r
-&nbsp; End Sub<BR/>\r
+&nbsp; &nbsp; Private Sub&nbsp; Class_Terminate()<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; Me.Target.Destroy<BR/>\r
+&nbsp; &nbsp; End Sub<BR/>\r
 End Class<BR/>\r
 <BR/>\r
-Class&nbsp; EventResponder<BR/>\r
-&nbsp; Public&nbsp; Func<BR/>\r
-&nbsp; Public&nbsp; Object<BR/>\r
-End Class</DIV>\r
-<DIV id="text184_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:42px; margin-top:599px; line-height:15px; white-space:nowrap">\r
-\83C\83x\83\93\83g\82É\89\9e\93\9a\82·\82é\95û\96@\82Ì\82P\82Â\82Æ\82µ\82Ä\81A<BR/>\r
-\82·\82×\82Ä\82Ì\83C\83x\83\93\83g\82É\89\9e\93\9a\82·\82é\82±\82Æ\82Í\81A\82Ü\82ê\82È\82Ì\82Å\81A\83\81\83\\83b\83h\82ª\91\8dÝ\82µ\82È\82¢\82Æ\82¢\82¤\83G\83\89\81[\82ª\94­\90¶<BR/>\r
-\82µ\82È\82¢\82æ\82¤\82É\82·\82×\82Ä\82Ì\83\81\83\\83b\83h\82ð\8bL\8fq\82·\82é\95K\97v\82ª\82 \82é\83C\83\93\83^\81[\83t\83F\83C\83X\82Í\81A\88µ\82¢\82Ã\82ç\82¢\82à\82Ì<BR/>\r
-\82Å\82·\81B<BR/>\r
-<BR/>\r
-\8cp\8f³\82ð\8eg\82¤\82Æ\81i\91½\8fd\8cp\8f³\82ª\8eg\82¦\82é\8c¾\8cê\82Å\82à\81j\81A\95¡\90\94\82Ì\83C\83\93\83X\83^\83\93\83X\82©\82ç\94­\90\82·\82é\83C\83x\83\93\83g\82É<BR/>\r
-\89\9e\93\9a\82·\82é\82±\82Æ\82ª\82Å\82«\82Ü\82¹\82ñ\81B<BR/>\r
+Class&nbsp; A_Class<BR/>\r
+&nbsp; &nbsp; Public&nbsp; CaseName<BR/>\r
+&nbsp; &nbsp; Public&nbsp; Reference<BR/>\r
 <BR/>\r
-\89\9e\93\9a\82·\82é\8f\88\97\9d\82Å\82Í\81A\83A\83v\83\8a\83P\81[\83V\83\87\83\93\82Ì\83f\81[\83^\82ª\95K\97v\82É\82È\82é\82±\82Æ\82ª\91½\82¢\82Ì\82Å\81A\8aÖ\90\94\82Å\82Í<BR/>\r
-\82È\82­\83\81\83\\83b\83h\81i\83I\83u\83W\83F\83N\83g\82ð\83p\83\89\83\81\81[\83^\81[\82É\8e\9d\82Á\82½\8aÖ\90\94\81j\82ð\83R\81[\83\8b\83o\83b\83N\82µ\82½\95û\82ª\82æ\82¢\82Å\82µ\82å\82¤\81B<BR/>\r
+&nbsp; &nbsp; Public&nbsp; IsDestory&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '// Add<BR/>\r
 <BR/>\r
-\89\9e\93\9a\82·\82é\83I\83u\83W\83F\83N\83g\82ª\95¡\90\94\82Å\82 \82é\82±\82Æ\82Í\81A\82ß\82¸\82ç\82µ\82­\82 \82è\82Ü\82¹\82ñ\81B<BR/>\r
+&nbsp; &nbsp; Private Sub&nbsp; Class_Terminate()<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; If not Me.IsDestory Then&nbsp; Me.Destroy&nbsp; &nbsp;'// Add<BR/>\r
+&nbsp; &nbsp; End Sub<BR/>\r
 <BR/>\r
-\88È\8fã\82©\82ç\81A\83C\83x\83\93\83g\82É\89\9e\93\9a\82·\82é\82Æ\82«\82Í\81A\95¡\90\94\82Ì\93o\98^\82³\82ê\82½\83\81\83\\83b\83h\82ð\8cÄ\82Ñ\8fo\82·\8b@\94\\82ð\8e\9d\82Á\82½<BR/>\r
-EventResponders \83N\83\89\83X\82ð\8eg\82¤\82Æ\82æ\82¢\82Å\82µ\82å\82¤\81B</DIV>\r
-<DIV id="text184_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:253px; margin-top:599px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#vbsool_inf">\r
-\83C\83\93\83^\81[\83t\83F\83C\83X</A></DIV>\r
-<DIV id="text184_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:347px; margin-top:599px; line-height:15px; white-space:nowrap">\r
-\82ª\82 \82è\82Ü\82·\82ª\81A\82 \82é\83N\83\89\83X\82Ì\81A</DIV>\r
-<DIV id="text184_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:569px; line-height:15px; white-space:nowrap">\r
-<A name="vbsool_event_consider">\r
-\8dl\8e\81i\83C\83x\83\93\83g\89\9e\93\9a\82Ì\8eÀ\91\95\95û\96@\81j</A></DIV>\r
-<DIV id="text184_7" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:132px; margin-top:163px; line-height:13px; white-space:nowrap">\r
-<A name="EventResponders_Add">\r
-Add</A></DIV>\r
-<DIV id="text184_8" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:132px; margin-top:298px; line-height:13px; white-space:nowrap">\r
-<A name="EventResponders_Calls">\r
-Calls</A></DIV>\r
-<DIV id="text184_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:42px; margin-top:516px; line-height:15px; white-space:nowrap">\r
-\8eQ\8dl</DIV>\r
-<DIV id="text184_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:89px; margin-top:516px; line-height:15px; white-space:nowrap">\r
-\81¨ EventRespondersClass \83N\83\89\83X (vbslib)</DIV>\r
-\r
-<v:line from="0,0" to="581,0"/>\r
-<v:line from="581,0" to="581,858"/>\r
-<v:line from="581,858" to="0,858"/>\r
-<v:line from="0,858" to="0,0"/>\r
-\r
-</PAGE>\r
\r
-<!-- page 185 --> \r
-<PAGE>\r
-<A id="svgcats_vml_p185" class="to_tree" style="margin-top:863px;" onClick="selectTreeElem( '185' );">\81©</A>\r
-<A href="#svgcats_vml_p186" class="to_next_page" style="margin-top:863px;">\81¥</A>\r
-<A href="#svgcats_vml_p184" class="to_prev_page" style="margin-top:863px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:874px; width:460px; height:1054px;" fillcolor="white"/>\r
-<DIV id="text185_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:891px; line-height:15px; white-space:nowrap">\r
-<A name="delegate1">\r
-\82P\82Â\82Ì\93o\98^\82³\82ê\82½\8aÖ\90\94\82ð\8cÄ\82Ñ\8fo\82·\83\81\83\93\83o\81[\95Ï\90\94\81A\83f\83\8a\83Q\81[\83g</A></DIV>\r
-<v:rect style="position:absolute; margin-left:31px; margin-top:922px; width:226px; height:40px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text185_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:39px; margin-top:928px; line-height:15px; white-space:nowrap">\r
-Dim&nbsp; ClassA::Delegate as _<BR/>\r
-&nbsp;Function ( Caller as ClassA, ... )</DIV>\r
-<DIV id="text185_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:1262px; line-height:15px; white-space:nowrap">\r
-<A name="delegate1_declare">\r
-\92è\8b`\81\8aÖ\90\94\82ð\93o\98^\82Å\82«\82é\83\81\83\93\83o\81[\95Ï\90\94\82ð\90é\8c¾\82·\82é</A></DIV>\r
-<v:rect style="position:absolute; margin-left:31px; margin-top:1283px; width:370px; height:145px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text185_4" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:39px; margin-top:1289px; line-height:15px; white-space:nowrap">\r
-Class ClassA<BR/>\r
-&nbsp; Public&nbsp; FuncA_Delegate&nbsp; ' as Function( Caller as ClassA )<BR/>\r
+&nbsp; &nbsp; Public Sub&nbsp; Destroy()&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '// Add<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; WScript.echo&nbsp; Me.CaseName +": A_Class::Class_Terminate"<BR/>\r
 <BR/>\r
-&nbsp; Private Sub&nbsp; Class_Initialize()<BR/>\r
-&nbsp; &nbsp; Set Me.FuncA_Delegate = GetRef( "DefaultFunction" )<BR/>\r
-&nbsp; End Sub<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; Me.Reference = Empty&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'// Add<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; Me.IsDestory = True&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; '// Add<BR/>\r
+&nbsp; &nbsp; End Sub<BR/>\r
 End Class<BR/>\r
 <BR/>\r
-Sub&nbsp; DefaultFunction( Caller ) : End Sub</DIV>\r
-<DIV id="text185_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:1497px; line-height:15px; white-space:nowrap">\r
-<A name="delegate1_add">\r
-\93o\98^\81\8aÖ\90\94\82ð\83\81\83\93\83o\81[\95Ï\90\94\82É\93o\98^\82·\82é</A></DIV>\r
-<v:rect style="position:absolute; margin-left:31px; margin-top:1521px; width:310px; height:55px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text185_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:39px; margin-top:1527px; line-height:15px; white-space:nowrap">\r
-Dim&nbsp; obj : Set obj = new ClassA<BR/>\r
-Set obj.FuncA_Delegate = GetRef( "ClassB_funcA" )<BR/>\r
-obj.Run&nbsp; '// call ClassA::FuncA_Delegate</DIV>\r
-<DIV id="text185_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:1645px; line-height:15px; white-space:nowrap">\r
-<A name="delegate1_call">\r
-\8cÄ\82Ñ\8fo\82µ\81\93o\98^\82³\82ê\82½\8aÖ\90\94\82ð\8cÄ\82Ñ\8fo\82·</A></DIV>\r
-<v:rect style="position:absolute; margin-left:31px; margin-top:1668px; width:370px; height:115px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text185_8" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:39px; margin-top:1674px; line-height:15px; white-space:nowrap">\r
-Class ClassA<BR/>\r
-&nbsp; Public&nbsp; FuncA_Delegate&nbsp; ' as Function( Caller as ClassA )<BR/>\r
+Class&nbsp; B_Class<BR/>\r
+&nbsp; &nbsp; Public&nbsp; CaseName<BR/>\r
+&nbsp; &nbsp; Public&nbsp; Reference<BR/>\r
 <BR/>\r
-&nbsp; Public Sub&nbsp; Run()<BR/>\r
-&nbsp; &nbsp; Me.FuncA_Delegate&nbsp; Me<BR/>\r
-&nbsp; End Sub<BR/>\r
+&nbsp; &nbsp; Private Sub&nbsp; Class_Terminate()<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; WScript.echo&nbsp; Me.CaseName +": B_Class::Class_Terminate"<BR/>\r
+&nbsp; &nbsp; End Sub<BR/>\r
 End Class</DIV>\r
-<DIV id="text185_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:50px; margin-top:978px; line-height:15px; white-space:nowrap">\r
-<A href="#delegate1_declare">\r
-\81¨ \92è\8b`\81\8aÖ\90\94\82ð\93o\98^\82Å\82«\82é\83\81\83\93\83o\81[\95Ï\90\94\82ð\90é\8c¾\82·\82é</A></DIV>\r
-<DIV id="text185_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:50px; margin-top:999px; line-height:15px; white-space:nowrap">\r
-<A href="#delegate1_add">\r
-\81¨ \93o\98^\81\8aÖ\90\94\82ð\83\81\83\93\83o\81[\95Ï\90\94\82É\93o\98^\82·\82é</A></DIV>\r
-<DIV id="text185_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:50px; margin-top:1020px; line-height:15px; white-space:nowrap">\r
-<A href="#delegate1_call">\r
-\81¨ \8cÄ\82Ñ\8fo\82µ\81\93o\98^\82³\82ê\82½\8aÖ\90\94\82ð\8cÄ\82Ñ\8fo\82·</A></DIV>\r
-<DIV id="text185_12" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:99px; margin-top:1305px; line-height:13px; white-space:nowrap">\r
-FuncA_Delegate</DIV>\r
-<DIV id="text185_13" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:105px; margin-top:1350px; line-height:13px; white-space:nowrap">\r
-FuncA_Delegate</DIV>\r
-<DIV id="text185_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:39px; margin-top:1435px; line-height:15px; white-space:nowrap">\r
-FuncA_Delegate \95Ï\90\94\82ð\90é\8c¾\82µ\82Ä\82¢\82Ü\82·\81B<BR/>\r
-\8f\89\8aú\92l\82Í\81A\92Ê\8fí\81A\89½\82à\82µ\82È\82¢ DefaultFunction \8aÖ\90\94\82Å\82·\81B</DIV>\r
-<DIV id="text185_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:39px; margin-top:1586px; line-height:15px; white-space:nowrap">\r
-ClassB_funcA \8aÖ\90\94\82ð\81AFuncA_Delegate \95Ï\90\94\82É\91ã\93ü\82µ\82Ä\82¢\82Ü\82·\81B<BR/>\r
-\92Ê\8fí\81A\83I\83u\83W\83F\83N\83g\82Ì\8eg\97p\8eÒ\82ª\91ã\93ü\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text185_16" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:243px; margin-top:1543px; line-height:13px; white-space:nowrap">\r
-ClassB_funcA</DIV>\r
-<DIV id="text185_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:39px; margin-top:1791px; line-height:15px; white-space:nowrap">\r
-FuncA_Delegate \95Ï\90\94\82É\93o\98^\82³\82ê\82Ä\82¢\82é\8aÖ\90\94\82ð\8cÄ\82Ñ\8fo\82µ\82Ä\82¢\82Ü\82·\81B<BR/>\r
-\92Ê\8fí\81A\83\81\83\93\83o\81[\95Ï\90\94\82ª\8f\8a\91®\82·\82é\83N\83\89\83X\82ª\8cÄ\82Ñ\8fo\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text185_18" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:261px; margin-top:1350px; line-height:13px; white-space:nowrap">\r
-DefaultFunction</DIV>\r
-<DIV id="text185_19" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:87px; margin-top:1543px; line-height:13px; white-space:nowrap">\r
-FuncA_Delegate</DIV>\r
-<DIV id="text185_20" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:81px; margin-top:1735px; line-height:13px; white-space:nowrap">\r
-FuncA_Delegate</DIV>\r
-<DIV id="text185_21" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#FF0000; margin-left:28px; margin-top:1064px; line-height:15px; white-space:nowrap">\r
-\92Ê\8fí\81A\83f\83\8a\83Q\81[\83g\81i\88Ï\8f÷\81j\82·\82é\8aÖ\90\94\82Í\95¡\90\94\91\8dÝ\82·\82é\82½\82ß\81A\82±\82±\82Å\90à\96¾\82·\82é<BR/>\r
-\95Ï\90\94\82æ\82è\81A\83C\83\93\83^\81[\83t\83F\83C\83X\82Ì\8eg\97p\82ð\90\84\8f§\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text185_22" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:64px; margin-top:1099px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#vbsool_inf">\r
-\81¨ \83C\83\93\83^\81[\83t\83F\83C\83X</A></DIV>\r
-<DIV id="text185_23" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#FF0000; margin-left:28px; margin-top:1133px; line-height:15px; white-space:nowrap">\r
-\83C\83x\83\93\83g\82É\89\9e\93\9a\82·\82é\8fê\8d\87\81A\89\9e\93\9a\82Å\82«\82é\83I\83u\83W\83F\83N\83g\82ª\95¡\90\94\82É\82È\82é\89Â\94\\90«<BR/>\r
-\82ª\82 \82é\82½\82ß\81A\82±\82±\82Å\90à\96¾\82·\82é\95Ï\90\94\82æ\82è\81A\95¡\90\94\82Ì\93o\98^\82³\82ê\82½\8aÖ\90\94\82ð\8cÄ\82Ñ<BR/>\r
-\8fo\82·\83\81\83\93\83o\81[\95Ï\90\94\82Ì\8eg\97p\82ð\90\84\8f§\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text185_24" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:28px; margin-top:1099px; line-height:15px; white-space:nowrap">\r
-\8eQ\8dl</DIV>\r
-<DIV id="text185_25" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:28px; margin-top:1184px; line-height:15px; white-space:nowrap">\r
-\8eQ\8dl</DIV>\r
-<DIV id="text185_26" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:65px; margin-top:1184px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_11.html#vbsool_event">\r
-\81¨ \83C\83x\83\93\83g</A></DIV>\r
-<v:roundrect style="position:absolute; margin-left:323px; margin-top:922px; width:72px; height:20px;" arcsize="0.500000" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text185_27" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#FF0000; font-weight: bold; margin-left:331px; margin-top:925px; line-height:15px; white-space:nowrap">\r
-ver2 \8có\95â</DIV>\r
-<DIV id="text185_28" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:63px; margin-top:1858px; line-height:15px; white-space:nowrap">\r
-<A href="http://www.fumikichan.net/prog/VB/se060201.jsp" target="_blank">\r
-\81¨ Visual Basic\8du\8dÀ-\83f\83\8a\83Q\81[\83g\82Ì\97\98\97p\95û\96@ (Web)</A></DIV>\r
-<DIV id="text185_29" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:28px; margin-top:1858px; line-height:15px; white-space:nowrap">\r
-\8eQ\8dl</DIV>\r
-<DIV id="text185_30" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:63px; margin-top:1880px; line-height:15px; white-space:nowrap">\r
-\81¨ \83f\83\8a\83Q\81[\83g(C#)</DIV>\r
-\r
-<v:line from="0,874" to="460,874"/>\r
-<v:line from="460,874" to="460,1928"/>\r
-<v:line from="460,1928" to="0,1928"/>\r
-<v:line from="0,1928" to="0,874"/>\r
-\r
-</PAGE>\r
\r
-<!-- page 186 --> \r
-<PAGE>\r
-<A id="svgcats_vml_p186" class="to_tree" style="margin-top:1933px;" onClick="selectTreeElem( '186' );">\81©</A>\r
-<A href="#svgcats_vml_p187" class="to_next_page" style="margin-top:1933px;">\81¥</A>\r
-<A href="#svgcats_vml_p185" class="to_prev_page" style="margin-top:1933px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:1944px; width:591px; height:919px;" fillcolor="white"/>\r
-<v:line style="position:absolute;" from="339,2380" to="445,2380" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="445,2380" to="434,2376" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="445,2380" to="434,2384" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="339,2350" to="445,2350" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="445,2350" to="434,2346" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="445,2350" to="434,2354" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:1961px; line-height:15px; white-space:nowrap">\r
-<A name="m_Delegate">\r
-m_Delegate \83v\83\8d\83p\83e\83B : \88Ï\8f÷ (vbsool)</A></DIV>\r
-<DIV id="text186_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:21px; margin-top:2616px; line-height:15px; white-space:nowrap">\r
-<A name="delegate_inf">\r
-\8f\88\97\9d\83t\83\8d\81[</A></DIV>\r
-<DIV id="text186_5" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:41px; margin-top:2735px; line-height:13px; white-space:nowrap">\r
-PreField.OnEnevtA</DIV>\r
-<DIV id="text186_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:56px; margin-top:2669px; line-height:13px; white-space:nowrap">\r
-PreField.m_Delegate = PostField</DIV>\r
-<DIV id="text186_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#800000; margin-left:200px; margin-top:2733px; line-height:15px; white-space:nowrap">\r
-\83C\83x\83\93\83g\82ª\82 \82Á\82½\82Æ\82«</DIV>\r
-<DIV id="text186_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#800000; margin-left:272px; margin-top:2668px; line-height:15px; white-space:nowrap">\r
-\88Ï\8f÷\90æ\82ð\90\90¬\82µ\82Ä\91o\95û\8cü\8eQ\8fÆ\82É\82·\82é</DIV>\r
-<DIV id="text186_9" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:67px; margin-top:2817px; line-height:13px; white-space:nowrap">\r
-PostField.OnEventA</DIV>\r
-<DIV id="text186_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:2075px; line-height:15px; white-space:nowrap">\r
-\93¯\82\83C\83\93\83^\81[\83t\83F\83C\83X (ClassI) \82ð\8e\9d\82Â\83N\83\89\83X\82ª\95¡\90\94\82 \82é\82Æ\82«\81A\82»\82ê\82ç\82Ì\83N\83\89\83X\82ª\8e\97\82Ä\82¢\82é\82Æ\82«\82Í\81A<BR/>\r
-\8b¤\92Ê\82Ì\83N\83\89\83X\82É\88Ï\8f÷\82·\82é\82Æ\82æ\82¢\82Å\82µ\82å\82¤\81B<BR/>\r
-\88Ï\8f÷\82·\82é\81i\82³\82ê\82é\81j\82Q\82Â\82Ì\83I\83u\83W\83F\83N\83g\82Ì\8aÖ\8cW\82Í\81A\92S\93\96\97Ì\88æ(WorkField)\82ð\95ª\8a\84\82µ\82½\82¾\82¯\82Ì\82à\82Ì\82Å<BR/>\r
-\82 \82è\81A\90e\8eq\8aÖ\8cW\82Å\82Í\82È\82¢\82Ì\82Å\81A\92Ê\8fí\81Am_Delegate \83v\83\8d\83p\83e\83B\82Å\81A\91o\95û\8cü\8eQ\8fÆ\82Å\82«\82é\82æ\82¤\82É\82µ\82Ü\82·\81B<BR/>\r
-\92S\93\96\97Ì\88æ\82Ì\95ª\8a\84\82Í\81A\83\81\83\93\83o\95Ï\90\94\82â\83\81\83\93\83o\8aÖ\90\94\82ð\82Ç\82¿\82ç\82Ì\83N\83\89\83X\82É\8f\8a\91®\82³\82¹\82é\82©\82Æ\82¢\82¤\82±\82Æ\82Å\82·\81B </DIV>\r
-<DIV id="text186_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:21px; margin-top:2268px; line-height:15px; white-space:nowrap">\r
-\82½\82¾\82µ\81A\95¡\90\94\82Ì\83I\83u\83W\83F\83N\83g\82ª\81A\83\81\83\93\83o\95Ï\90\94\82Ì\92l\82©\81A\83\81\83\93\83o\8aÖ\90\94\83|\83C\83\93\83^\82Ì\92l\82©\81A\83\81\83\\83b\83h\83|\83C\83\93\83^<BR/>\r
-\82Ì\92l\82¾\82¯\88Ù\82È\82é\82Ì\82Å\82 \82ê\82Î\81A\83N\83\89\83X\82Í\8b¤\92Ê\82Ì ClassC \83N\83\89\83X\82¾\82¯\82Å\82æ\82­\81A\82»\82Ì\83C\83\93\83X\83^\83\93\83X\82ð\95Ô\82·</DIV>\r
-<DIV id="text186_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:88px; margin-top:2300px; line-height:15px; white-space:nowrap">\r
-\8aÖ\90\94\82ð\97p\88Ó\82µ\82Ä\82­\82¾\82³\82¢\81B\88Ï\8f÷\82·\82é\95K\97v\82Í\82 \82è\82Ü\82¹\82ñ\81B</DIV>\r
-<v:line style="position:absolute;" from="189,2216" to="155,2216" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:oval style="position:absolute; margin-left:152px; margin-top:2213px; width:5px; height:5px;" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="183,2184" to="155,2184" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:oval style="position:absolute; margin-left:152px; margin-top:2181px; width:5px; height:5px;" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_15" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:103px; margin-top:2178px; line-height:13px; white-space:nowrap">\r
-ClassI</DIV>\r
-<v:rect style="position:absolute; margin-left:182px; margin-top:2203px; width:53px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:190px; margin-top:2209px; line-height:15px; white-space:nowrap">\r
-ClassB</DIV>\r
-<DIV id="text186_17" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:103px; margin-top:2212px; line-height:13px; white-space:nowrap">\r
-ClassI</DIV>\r
-<v:rect style="position:absolute; margin-left:182px; margin-top:2169px; width:53px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:190px; margin-top:2175px; line-height:15px; white-space:nowrap">\r
-ClassA</DIV>\r
-<v:rect style="position:absolute; margin-left:363px; margin-top:2188px; width:55px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:371px; margin-top:2194px; line-height:15px; white-space:nowrap">\r
-ClassC</DIV>\r
-<v:line style="position:absolute;" from="306,2195" to="360,2195" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="360,2195" to="349,2191" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="360,2195" to="349,2199" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="306,2207" to="360,2207" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="360,2207" to="349,2203" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="360,2207" to="349,2211" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="306,2184" to="306,2195" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="306,2216" to="306,2207" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_24" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:243px; margin-top:2219px; line-height:12px; white-space:nowrap">\r
-m_Delegate</DIV>\r
-<DIV id="text186_25" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:244px; margin-top:2171px; line-height:12px; white-space:nowrap">\r
-m_Delegate</DIV>\r
-<v:line style="position:absolute;" from="332,2380" to="332,2371" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:rect style="position:absolute; margin-left:448px; margin-top:2367px; width:52px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_27" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:456px; margin-top:2373px; line-height:15px; white-space:nowrap">\r
-FuncB</DIV>\r
-<DIV id="text186_28" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:158px; margin-top:2376px; line-height:13px; white-space:nowrap">\r
-ClassI</DIV>\r
-<DIV id="text186_29" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:158px; margin-top:2342px; line-height:13px; white-space:nowrap">\r
-ClassI</DIV>\r
-<v:line style="position:absolute;" from="236,2348" to="203,2348" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:oval style="position:absolute; margin-left:200px; margin-top:2345px; width:5px; height:5px;" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="235,2380" to="203,2380" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:oval style="position:absolute; margin-left:200px; margin-top:2377px; width:5px; height:5px;" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:rect style="position:absolute; margin-left:232px; margin-top:2367px; width:109px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_32" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:240px; margin-top:2373px; line-height:15px; white-space:nowrap">\r
-ClassC : ObjectB</DIV>\r
-<v:rect style="position:absolute; margin-left:448px; margin-top:2335px; width:52px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_33" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:456px; margin-top:2341px; line-height:15px; white-space:nowrap">\r
-FuncA</DIV>\r
-<v:rect style="position:absolute; margin-left:232px; margin-top:2335px; width:109px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_34" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:240px; margin-top:2341px; line-height:15px; white-space:nowrap">\r
-ClassC : ObjectA</DIV>\r
-<DIV id="text186_35" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:351px; margin-top:2338px; line-height:12px; white-space:nowrap">\r
-function pointer</DIV>\r
-<DIV id="text186_36" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:351px; margin-top:2369px; line-height:12px; white-space:nowrap">\r
-function pointer</DIV>\r
-<v:line style="position:absolute;" from="306,2184" to="238,2184" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="238,2184" to="249,2188" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="238,2184" to="249,2180" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="306,2216" to="238,2216" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="238,2216" to="249,2220" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="238,2216" to="249,2212" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_39" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:315px; margin-top:2177px; line-height:12px; white-space:nowrap">\r
-m_Delegate</DIV>\r
-<DIV id="text186_40" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:315px; margin-top:2217px; line-height:12px; white-space:nowrap">\r
-m_Delegate</DIV>\r
-<DIV id="text186_41" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:67px; margin-top:2332px; line-height:13px; white-space:nowrap">\r
-get_ObjectA()</DIV>\r
-<v:line style="position:absolute;" from="147,2348" to="46,2348" strokecolor="#000000" strokeweight="1pt">\r
-    <v:stroke dashstyle="dash"/>\r
-</v:line>\r
-<v:shape style="position:absolute; margin-left:46px; margin-top:2343px; width:10px; height:10px"\r
- fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"\r
- path="m 0,500 l 1000,1000, 1000,0 x e"/>\r
-<v:line style="position:absolute;" from="147,2380" to="46,2380" strokecolor="#000000" strokeweight="1pt">\r
-    <v:stroke dashstyle="dash"/>\r
-</v:line>\r
-<v:shape style="position:absolute; margin-left:46px; margin-top:2375px; width:10px; height:10px"\r
- fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"\r
- path="m 0,500 l 1000,1000, 1000,0 x e"/>\r
-<DIV id="text186_44" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:67px; margin-top:2364px; line-height:13px; white-space:nowrap">\r
-get_ObjectB()</DIV>\r
-<DIV id="text186_45" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:262px; margin-top:2402px; line-height:13px; white-space:nowrap">\r
-PreField</DIV>\r
-<DIV id="text186_46" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:447px; margin-top:2402px; line-height:13px; white-space:nowrap">\r
-PostField</DIV>\r
-<DIV id="text186_47" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:363px; margin-top:2233px; line-height:13px; white-space:nowrap">\r
-PostField</DIV>\r
-<DIV id="text186_48" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:183px; margin-top:2236px; line-height:13px; white-space:nowrap">\r
-PreField</DIV>\r
-<DIV id="text186_49" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:41px; margin-top:2647px; line-height:13px; white-space:nowrap">\r
-new_ClassA</DIV>\r
-<DIV id="text186_50" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:56px; margin-top:2684px; line-height:13px; white-space:nowrap">\r
-PostField.m_Delegate = PreField</DIV>\r
-<DIV id="text186_51" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:56px; margin-top:2775px; line-height:13px; white-space:nowrap">\r
-\81iPreField \82ª\8f\88\97\9d\82·\82é\81j</DIV>\r
-<DIV id="text186_52" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:56px; margin-top:2797px; line-height:13px; white-space:nowrap">\r
-\82Ü\82½\82Í</DIV>\r
-<DIV id="text186_53" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#800000; margin-left:241px; margin-top:2645px; line-height:15px; white-space:nowrap">\r
-\8f\89\8aú\89»\8e\9e\81A\82Ü\82½\82Í\88Ï\8f÷\90æ\82ª\95K\97v\82É\82È\82Á\82½\82Æ\82«</DIV>\r
-<DIV id="text186_54" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:56px; margin-top:2699px; line-height:13px; white-space:nowrap">\r
-ClassC.Param = "ClassA"</DIV>\r
-<DIV id="text186_55" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#800000; margin-left:251px; margin-top:2697px; line-height:15px; white-space:nowrap">\r
-\8b¤\92Ê\83N\83\89\83X\82Ì\83p\83\89\83\81\81[\83^\90Ý\92è</DIV>\r
-<DIV id="text186_56" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#800000; margin-left:211px; margin-top:2815px; line-height:15px; white-space:nowrap">\r
-\83\81\83\\83b\83h\8cÄ\82Ñ\8fo\82µ\81A\83C\83\93\83^\81[\83t\83F\83C\83X\81A\8aÖ\90\94\83|\83C\83\93\83^\82È\82Ç</DIV>\r
-<DIV id="text186_57" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:21px; margin-top:2432px; line-height:15px; white-space:nowrap">\r
-\88Ï\8f÷\82ð\8eg\82¤\82Æ\81A\97¼\95û\82Ì\83N\83\89\83X\82Ì\88Ë\91\8aÖ\8cW\82ª\8b­\82Ü\82è\81A\97¼\95û\82Ì\92è\8b`\82ª\95K\97v\82É\82È\82Á\82Ä\82µ\82Ü\82¢\82Ü\82·\81B<BR/>\r
-\82 \82é\83P\81[\83X\82Å\82Í\95Ð\95û\82Ì\83N\83\89\83X\82¾\82¯\82Å\8f\\95ª\82Å\82 \82é\8fê\8d\87\81A\8fç\92·\82Å\82 \82Á\82Ä\82à\83\81\83\93\83o\95Ï\90\94\82â\83\81\83\93\83o<BR/>\r
-\8aÖ\90\94\82ð\97¼\95û\82Å\8e\9d\82½\82¹\82Ü\82·\81\82Ü\82½\81A\8b¤\92Ê\82Ì\83\81\83\93\83o\95Ï\90\94\81iClassC \82É\8f\8a\91®\82·\82×\82«\95Ï\90\94\81j\82ð\81A<BR/>\r
-\82 \82¦\82Ä\8b¤\92Ê\82Å\82Í\82È\82¢\83N\83\89\83X\81iClassA, ClassB) \82Ì\83\81\83\93\83o\95Ï\90\94\82É\82µ\82½\82è\82µ\82Ü\82·\81\93K\93\96\82È\83^\83C\83~\83\93\83O<BR/>\r
-\82Å\81A\8fç\92·\82È\83f\81[\83^\82Ì\93¯\8aú\82ð\82Æ\82é SyncDelegete \8aÖ\90\94\82ð\8cÄ\82Ñ\8fo\82µ\82Ü\82·\81B</DIV>\r
-<v:rect style="position:absolute; margin-left:132px; margin-top:2523px; width:53px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_58" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:140px; margin-top:2529px; line-height:15px; white-space:nowrap">\r
-ClassA</DIV>\r
-<v:rect style="position:absolute; margin-left:272px; margin-top:2523px; width:55px; height:26px;" fillcolor="#E6E6FF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_59" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:280px; margin-top:2529px; line-height:15px; white-space:nowrap">\r
-ClassC</DIV>\r
-<DIV id="text186_60" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:149px; margin-top:2558px; line-height:13px; white-space:nowrap">\r
-m_Name</DIV>\r
-<DIV id="text186_61" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:289px; margin-top:2558px; line-height:13px; white-space:nowrap">\r
-m_Name</DIV>\r
-<DIV id="text186_62" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:149px; margin-top:2575px; line-height:13px; white-space:nowrap">\r
-m_LastDate</DIV>\r
-<v:line style="position:absolute;" from="269,2537" to="188,2537" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="269,2537" to="258,2533" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="269,2537" to="258,2541" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="188,2537" to="199,2541" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="188,2537" to="199,2533" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_64" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:204px; margin-top:2524px; line-height:12px; white-space:nowrap">\r
-m_Delegate</DIV>\r
-<DIV id="text186_65" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#FF0000; margin-left:363px; margin-top:2558px; line-height:12px; white-space:nowrap">\r
-\81©\95K\97v\82È\8fç\92·</DIV>\r
-<v:line style="position:absolute;" from="278,2565" to="197,2565" strokecolor="#000000" strokeweight="1pt">\r
-    <v:stroke dashstyle="dash"/>\r
-</v:line>\r
-<v:line style="position:absolute;" from="278,2565" to="267,2561" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="278,2565" to="267,2569" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="197,2565" to="208,2569" strokecolor="#000000" strokeweight="1pt"/>\r
-<v:line style="position:absolute;" from="197,2565" to="208,2561" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_67" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:210px; margin-top:2552px; line-height:12px; white-space:nowrap">\r
-SyncDelegete</DIV>\r
-<DIV id="text186_68" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:56px; margin-top:2753px; line-height:13px; white-space:nowrap">\r
-SyncDelegate</DIV>\r
-<DIV id="text186_69" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#800000; margin-left:211px; margin-top:2751px; line-height:15px; white-space:nowrap">\r
-\8fç\92·\82È\83f\81[\83^\82Ì\93¯\8aú\82ð\82Æ\82é</DIV>\r
-<v:rect style="position:absolute; margin-left:29px; margin-top:1998px; width:202px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_70" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:37px; margin-top:2005px; line-height:13px; white-space:nowrap">\r
-Property&nbsp; m_Delegate as variant</DIV>\r
-<DIV id="text186_71" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:249px; margin-top:2006px; line-height:12px; white-space:nowrap">\r
-\88Ï\8f÷\90æ\82ª\95¡\90\94\82 \82é\82Æ\82«\82Í\81A\96¼\91O\82Í m_Delegate \82Å\82È\82­\82Ä\82à\82æ\82¢</DIV>\r
-<DIV id="text186_72" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:21px; margin-top:2300px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#get_ClassA">\r
-get_Object</A></DIV>\r
-<v:roundrect style="position:absolute; margin-left:292px; margin-top:1956px; width:56px; height:20px;" arcsize="0.500000" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text186_73" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#FF0000; font-weight: bold; margin-left:300px; margin-top:1959px; line-height:15px; white-space:nowrap">\r
-\8c\9f\93¢\92\86</DIV>\r
-<DIV id="text186_74" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:2045px; line-height:15px; white-space:nowrap">\r
-\88Ï\8f÷\90æ\82Æ\82È\82é\83\86\81[\83U\81[\92è\8b`\83I\83u\83W\83F\83N\83g\81B</DIV>\r
+<DIV id="text176_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:47px; line-height:15px; white-space:nowrap">\r
+\91\8a\8cÝ\8eQ\8fÆ\82µ\82Ä\82¢\82é\83I\83u\83W\83F\83N\83g\82É\81AClass_Terminate \82ð\8cÄ\82Ñ\8fo\82·\82«\82Á\82©\82¯\82ð\8fo\82·<BR/>\r
+\83I\83u\83W\83F\83N\83g\81B</DIV>\r
+<DIV id="text176_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#800000; margin-left:24px; margin-top:89px; line-height:15px; white-space:nowrap">\r
+\82½\82¾\82µ\81A\83\86\81[\83U\81[\82ª DestroyerClass \82ð\8dì\82é\82±\82Æ\82ð\96Y\82ê\82é\82Æ\8dí\8f\9c\82³\82ê\82È\82­\82È\82é\82½\82ß\81A<BR/>\r
+\90\84\8f§\82µ\82Ü\82¹\82ñ\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:29px; margin-top:1150px; width:202px; height:70px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text176_5" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:37px; margin-top:1156px; line-height:15px; white-space:nowrap">\r
+Case3:<BR/>\r
+Case3: A_Class::Class_Terminate<BR/>\r
+Case3: B_Class::Class_Terminate<BR/>\r
+End of Main</DIV>\r
+<DIV id="text176_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:1132px; line-height:15px; white-space:nowrap">\r
+\95\\8e¦\97á\81F</DIV>\r
+<DIV id="text176_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:252px; line-height:15px; white-space:nowrap">\r
+\8c\9f\8fØ\83R\81[\83h</DIV>\r
+<v:line style="position:absolute;" from="123,139" to="123,158" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="123,158" to="127,147" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="123,158" to="119,147" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:rect style="position:absolute; margin-left:88px; margin-top:167px; width:70px; height:26px;" fillcolor="#F8FFB0" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text176_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:96px; margin-top:173px; line-height:15px; white-space:nowrap">\r
+Destroyer</DIV>\r
+<v:line style="position:absolute;" from="267,219" to="267,193" strokecolor="#FF0000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="267,193" to="263,204" strokecolor="#FF0000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="267,193" to="271,204" strokecolor="#FF0000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="267,219" to="139,219" strokecolor="#FF0000" strokeweight="1pt"/>\r
+<v:rect style="position:absolute; margin-left:203px; margin-top:167px; width:23px; height:26px;" fillcolor="#F8FFB0" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text176_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:211px; margin-top:173px; line-height:15px; white-space:nowrap">\r
+A</DIV>\r
+<v:rect style="position:absolute; margin-left:310px; margin-top:167px; width:25px; height:26px;" fillcolor="#F8FFB0" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text176_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:318px; margin-top:173px; line-height:15px; white-space:nowrap">\r
+B</DIV>\r
+<v:line style="position:absolute;" from="214,139" to="214,158" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="214,158" to="218,147" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="214,158" to="210,147" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="322,139" to="322,158" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="322,158" to="326,147" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="322,158" to="318,147" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="240,175" to="294,175" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="294,175" to="283,171" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="294,175" to="283,179" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="294,186" to="240,186" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="240,186" to="251,190" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="240,186" to="251,182" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="139,201" to="139,219" strokecolor="#FF0000" strokeweight="1pt"/>\r
+<DIV id="text176_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#FF0000; margin-left:167px; margin-top:226px; line-height:12px; white-space:nowrap">\r
+\91\8a\8cÝ\8eQ\8fÆ\82ð\90Ø\82é</DIV>\r
 \r
-<v:line from="0,1944" to="591,1944"/>\r
-<v:line from="591,1944" to="591,2863"/>\r
-<v:line from="591,2863" to="0,2863"/>\r
-<v:line from="0,2863" to="0,1944"/>\r
+<v:line from="0,0" to="510,0"/>\r
+<v:line from="510,0" to="510,1252"/>\r
+<v:line from="510,1252" to="0,1252"/>\r
+<v:line from="0,1252" to="0,0"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 187 --> \r
+<!-- page 177 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p187" class="to_tree" style="margin-top:2868px;" onClick="selectTreeElem( '187' );">\81©</A>\r
-<A href="#svgcats_vml_p188" class="to_next_page" style="margin-top:2868px;">\81¥</A>\r
-<A href="#svgcats_vml_p186" class="to_prev_page" style="margin-top:2868px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:2879px; width:645px; height:950px;" fillcolor="white"/>\r
-<DIV id="text187_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:2896px; line-height:15px; white-space:nowrap">\r
-<A name="GetMainSetting">\r
-GetMainSetting \8aÖ\90\94 (vbsool)</A></DIV>\r
-<v:rect style="position:absolute; margin-left:41px; margin-top:3074px; width:514px; height:265px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text187_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:49px; margin-top:3080px; line-height:15px; white-space:nowrap">\r
-Dim g_g : Sub GetMainSetting( g ) : If not IsEmpty(g_g) Then Set g=g_g : Exit Sub<BR/>\r
-&nbsp; &nbsp; Set g=CreateObject("Scripting.Dictionary") : Set g_g=g<BR/>\r
-&nbsp; &nbsp; '// \82Ü\82½\82Í\81ASet g = new LazyDictionaryClass : Set g_g=g<BR/>\r
+<A id="svgcats_vml_p177" class="to_tree" style="margin-top:1257px;" onClick="selectTreeElem( '177' );">\81©</A>\r
+<A href="#svgcats_vml_p178" class="to_next_page" style="margin-top:1257px;">\81¥</A>\r
+<A href="#svgcats_vml_p176" class="to_prev_page" style="margin-top:1257px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:1268px; width:588px; height:1196px;" fillcolor="white"/>\r
+<DIV id="text177_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:1285px; line-height:15px; white-space:nowrap">\r
+<A name="Class_Terminate_err">\r
+Class_Terminate \82Ì\92\86\82Ì\83G\83\89\81[</A></DIV>\r
+<v:rect style="position:absolute; margin-left:39px; margin-top:1493px; width:442px; height:265px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text177_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:47px; margin-top:1499px; line-height:15px; white-space:nowrap">\r
+Class&nbsp; ClassA<BR/>\r
+&nbsp; Private Sub Class_Terminate()<BR/>\r
+&nbsp; &nbsp; WScript.Echo Err&nbsp; ' 0 \82Æ\95\\8e¦\82µ\82Ü\82·<BR/>\r
+&nbsp; &nbsp; NO_OBJ.ERROR&nbsp; &nbsp; &nbsp; ' \83G\83\89\81[<BR/>\r
+&nbsp; &nbsp; WScript.Echo Err&nbsp; ' \8eÀ\8ds\82µ\82È\82¢<BR/>\r
+&nbsp; End Sub<BR/>\r
+End Class<BR/>\r
+<BR/>\r
 <BR/>\r
-&nbsp; &nbsp; '[Setting]<BR/>\r
-&nbsp; &nbsp; '==============================================================================<BR/>\r
-&nbsp; &nbsp; g("ExeName") = "Sample"<BR/>\r
-&nbsp; &nbsp; '// \82Ü\82½\82Í\81Ag("${ExeName}") = "Sample"<BR/>\r
-&nbsp; &nbsp; '==============================================================================<BR/>\r
+Dim&nbsp; m : Set m = new ClassA<BR/>\r
+m = Empty<BR/>\r
+'// \82±\82±\82Å\81A\83G\83\89\81[\83\81\83b\83Z\81[\83W\82ª\95\\8e¦\82³\82ê\82Ü\82·\81B<BR/>\r
+'// On Error Resume Next \82Ì\82Æ\82«\81A\82Ü\82½\82Í\81A\83f\83o\83b\83K\82É\90Ú\91±\82µ\82Ä\82¢\82é\82Æ\82«\82Í\81A<BR/>\r
+'// \83G\83\89\81[\83\81\83b\83Z\81[\83W\82ª\95\\8e¦\82³\82ê\82Ü\82¹\82ñ\81B<BR/>\r
+WScript.Echo&nbsp; Err&nbsp; ' 500 \82Æ\95\\8e¦\82µ\82Ü\82·\81B Resume Next \82µ\82½\82©\82Ì\82æ\82¤\82È\93®\82«<BR/>\r
+On Error GoTo 0<BR/>\r
+WScript.Echo&nbsp; Err&nbsp; ' 0 \82Æ\95\\8e¦\82µ\82Ü\82·</DIV>\r
+<DIV id="text177_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:30px; margin-top:1315px; line-height:15px; white-space:nowrap">\r
+Class_Treminate \82Ì\92\86\82Å\83G\83\89\81[\82ª\94­\90\82µ\82½\82ç\81AClass_Terminate \82Ì\92\86\82Í\81A\88ê\94Ê\82Ì\8aÖ\90\94\82Æ\93¯\82¶<BR/>\r
+\93®\82«\82ð\82µ\82Ü\82·\81i\83G\83\89\81[\8e\9e\82Ì\82æ\82¤\82È\83\8a\83^\81[\83\93\82ª\94­\90\82µ\82Ü\82·\81j\82ª\81A\82·\82®\82É\83G\83\89\81[\83\81\83b\83Z\81[\83W\82ð\95\\8e¦\82µ\82Ä\81A<BR/>\r
+Class_Terminate \82ð\8cÄ\82Ñ\8fo\82µ\82½\8fê\8f\8a\82Ì\91±\82«\82©\82ç\8eÀ\8ds\82µ\82Ü\82·\81B\81i\83G\83\89\81[\8e\9e\82Ì\82æ\82¤\82È\83\8a\83^\81[\83\93\82Í\81A<BR/>\r
+\94­\90\82µ\82Ü\82¹\82ñ\81j<BR/>\r
+\82±\82Ì\82½\82ß\81A\83G\83\89\81[\82ª\94­\90\82µ\82Ä Class_Treminate \82Å\95K\97v\82È\8f\88\97\9d\82ª\8eÀ\8ds\82³\82ê\82È\82©\82Á\82½\82±\82Æ\82ð<BR/>\r
+\8c©\93¦\82·\89Â\94\\90«\82ª\8d\82\82­\81A\96â\91è\82Å\82·\81\93Á\82É cscript.exe \82Å\8eÀ\8ds\82µ\82½\82Æ\82«\82Í\81AOn Error Resume<BR/>\r
+Next \82µ\82Ä\82¢\82È\82¢\82Æ\82«\82Í\81A\83G\83\89\81[\83\81\83b\83Z\81[\83W\82ª\95\\8e¦\82³\82ê\82é\82Ì\82Å\82·\82ª\81A\91±\82«\82Ì\8eÀ\8ds\82É\82æ\82Á\82Ä<BR/>\r
+\83X\83N\83\8d\81[\83\8b\83A\83E\83g\82µ\82Ä\81A\83G\83\89\81[\82ª\94­\90\82µ\82½\82±\82Æ\82ª\83\86\81[\83U\82É\92m\82ç\82³\82ê\82Ü\82¹\82ñ\81\82»\82Ì\82Ü\82Ü\81A<BR/>\r
+\82½\82Æ\82¦\82Î\8cë\82Á\82½\8cv\8eZ\8c\8b\89Ê\82ð\8eg\82Á\82Ä\82µ\82Ü\82¢\81A\8cã\82Å\96â\91è\82É\82È\82é\82©\82à\92m\82ê\82Ü\82¹\82ñ\81B</DIV>\r
+<DIV id="text177_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:30px; margin-top:1790px; line-height:15px; white-space:nowrap">\r
+\82±\82Ì\96â\91è\82ª\94­\90\82µ\82È\82¢\82æ\82¤\81AMsgBox \82â ErrorCheckInTerminate \82Å\83G\83\89\81[\82ð\8am\8eÀ\82É\83\86\81[\83U<BR/>\r
+\82É\92m\82ç\82¹\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:39px; margin-top:1866px; width:478px; height:325px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text177_5" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:47px; margin-top:1872px; line-height:15px; white-space:nowrap">\r
+Class&nbsp; ClassA<BR/>\r
+&nbsp; Private&nbsp; m_bFinished<BR/>\r
+<BR/>\r
+Public Sub&nbsp; Finish()<BR/>\r
+&nbsp; WScript.Echo "Finish"<BR/>\r
+&nbsp; m_bFinished = True<BR/>\r
 End Sub<BR/>\r
-Sub GetResetMainSetting( g ) : g_g = Empty : GetMainSetting g : End Sub<BR/>\r
 <BR/>\r
-Sub&nbsp; Main()<BR/>\r
-&nbsp; &nbsp; GetResetMainSetting&nbsp; g<BR/>\r
-&nbsp; &nbsp; echo&nbsp; g("ExeName")<BR/>\r
-&nbsp; &nbsp; '// \82Ü\82½\82Í\81Aecho&nbsp; g("${ExeName}")<BR/>\r
-End Sub</DIV>\r
-<DIV id="text187_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:2952px; line-height:15px; white-space:nowrap">\r
-\83\81\83C\83\93 *.vbs \83t\83@\83C\83\8b\82É\8bL\8fq\82·\82é\83\86\81[\83U\81[\92è\8b`\83f\81[\83^\82Í\81AGetMainSetting \8aÖ\90\94\82Å\8eæ\93¾\82Å\82«\82é\82æ\82¤\82É\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text187_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:215px; margin-top:2985px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#get_ClassA">\r
-\90Ã\93I\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b</A></DIV>\r
-<DIV id="text187_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:2985px; line-height:15px; white-space:nowrap">\r
-\83\81\83C\83\93\82Å\82Í\82È\82¢ *.vbs \83t\83@\83C\83\8b\82Í\81A</DIV>\r
-<DIV id="text187_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:362px; margin-top:2985px; line-height:15px; white-space:nowrap">\r
-\82É\8bL\8fq\82µ\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
-<DIV id="text187_7" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:91px; margin-top:3171px; line-height:13px; white-space:nowrap">\r
-ExeName</DIV>\r
-<DIV id="text187_8" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:169px; margin-top:3171px; line-height:13px; white-space:nowrap">\r
-Sample</DIV>\r
-<DIV id="text187_9" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:127px; margin-top:3291px; line-height:13px; white-space:nowrap">\r
-ExeName</DIV>\r
-<DIV id="text187_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:191px; margin-top:3017px; line-height:15px; white-space:nowrap">\r
-UnitTest::Delegate</DIV>\r
-<DIV id="text187_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:3017px; line-height:15px; white-space:nowrap">\r
-vbslib \82Ì Test.vbs \82Ì\92\86\82Å\82Í\81A</DIV>\r
-<DIV id="text187_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:298px; margin-top:3017px; line-height:15px; white-space:nowrap">\r
-\82É</DIV>\r
-<v:roundrect style="position:absolute; margin-left:251px; margin-top:2891px; width:72px; height:20px;" arcsize="0.500000" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text187_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#FF0000; font-weight: bold; margin-left:259px; margin-top:2894px; line-height:15px; white-space:nowrap">\r
-ver2 \8có\95â</DIV>\r
-<DIV id="text187_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:159px; margin-top:3001px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_11.html#get_ModuleConsts">\r
-get_ModuleConsts</A></DIV>\r
-<DIV id="text187_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:3001px; line-height:15px; white-space:nowrap">\r
-\82»\82Ì\92\86\82Å\81A\93Á\82É\92è\90\94\82Í\81A</DIV>\r
-<DIV id="text187_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:266px; margin-top:3001px; line-height:15px; white-space:nowrap">\r
-\82Å\8eæ\93¾\82Å\82«\82é\82æ\82¤\82É\82µ\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
-<DIV id="text187_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:3053px; line-height:15px; white-space:nowrap">\r
-\92è\8b`\97á\81A\8eg\97p\97á\81F</DIV>\r
-<DIV id="text187_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:317px; margin-top:3017px; line-height:15px; white-space:nowrap">\r
-new_TestCaseData</DIV>\r
-<DIV id="text187_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:430px; margin-top:3017px; line-height:15px; white-space:nowrap">\r
-\82È\82Ç\82ð\8bL\8fq\82µ\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
-<DIV id="text187_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:3366px; line-height:15px; white-space:nowrap">\r
-GetMainSetting \82ª\92è\8b`\82³\82ê\82Ä\82¢\82é\83X\83N\83\8a\83v\83g\82ð ExecuteGlobal \81ivbslib \82Ì include\81Acall_vbs \82È\82Ç\81j<BR/>\r
-\82·\82é\82Æ\81AGetMainSetting \82Ì\92è\8b`\82ª\95Ï\82í\82Á\82Ä\82µ\82Ü\82¢\82Ü\82·\82ª\81A\8f\89\82ß\82Ä GetMainSetting \82ð\8cÄ\82ñ\82¾\82Æ\82«<BR/>\r
-\82Ì\92è\8b`\93à\97e\82Å g \82ª\8f\89\8aú\89»\82³\82ê\82½\8cã\82Í\81AGetMainSetting \82ð\8cÄ\82ñ\82Å\82à g \82Í\95Ï\82í\82è\82Ü\82¹\82ñ\81B<BR/>\r
-\82È\82Ì\82Å\81Amain \8aÖ\90\94\82Ì\8dÅ\8f\89\82Å\95K\82¸\8cÄ\82Ñ\8fo\82µ\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
-<v:rect style="position:absolute; margin-left:50px; margin-top:3516px; width:502px; height:145px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text187_21" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:58px; margin-top:3522px; line-height:15px; white-space:nowrap">\r
-Dim g_g : Sub GetMainSetting( g ) : If not IsEmpty(g_g) Then Set g=g_g : Exit Sub<BR/>\r
-&nbsp; Set g=CreateObject("Scripting.Dictionary") : Set g_g=g<BR/>\r
-&nbsp; call_vbs&nbsp; SearchParent( "Common.vbs" ), "Common_setVariables", g<BR/>\r
+Private Sub&nbsp; Class_Terminate()<BR/>\r
+&nbsp; Dim&nbsp; en,ed : en = Err.Number : ed = Err.Description<BR/>\r
+&nbsp; On Error Resume Next&nbsp; '// This clears the error<BR/>\r
+<BR/>\r
+&nbsp; &nbsp; If en &lt;&gt; 0 Then&nbsp; WScript.Echo "Cancel"<BR/>\r
+&nbsp; &nbsp; WScript.Echo "Release"<BR/>\r
+<BR/>\r
+&nbsp; &nbsp; ErrorCheckInTerminate&nbsp; en<BR/>\r
+&nbsp; If en = 0 and not m_bFinished Then&nbsp; NotCallFinish<BR/>\r
+&nbsp; On Error GoTo 0 : If en &lt;&gt; 0 Then&nbsp; Err.Raise en,,ed&nbsp; '// This sets en again<BR/>\r
+End Sub<BR/>\r
+<BR/>\r
+End Class</DIV>\r
+<DIV id="text177_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:40px; margin-top:1474px; line-height:15px; white-space:nowrap">\r
+\88«\82¢\83R\81[\83h - Class_Terminate \82Ì\92\86</DIV>\r
+<DIV id="text177_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:39px; margin-top:1844px; line-height:15px; white-space:nowrap">\r
+<A name="Class_Terminate_good">\r
+\97Ç\82¢\83R\81[\83h - Class_Terminate \82Ì\92\86</A></DIV>\r
+<DIV id="text177_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:143px; margin-top:2380px; line-height:15px; white-space:nowrap">\r
+\81¨ T_Finish.vbs</DIV>\r
+<DIV id="text177_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:47px; margin-top:2380px; line-height:15px; white-space:nowrap">\r
+\8c\9f\8fØ\83X\83N\83\8a\83v\83g</DIV>\r
+<v:rect style="position:absolute; margin-left:39px; margin-top:2202px; width:430px; height:160px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text177_10" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:47px; margin-top:2208px; line-height:15px; white-space:nowrap">\r
+Sub&nbsp; NotCallFinish()<BR/>\r
+&nbsp; Stop : MsgBox&nbsp; "[ERROR] not call Finish" : WScript.Quit 1<BR/>\r
+End Sub<BR/>\r
 <BR/>\r
-&nbsp; '[Setting]<BR/>\r
-&nbsp; '==============================================================================<BR/>\r
-&nbsp; g("ExeName") = "Sample"<BR/>\r
-&nbsp; '==============================================================================<BR/>\r
+Sub&nbsp; ErrorCheckInTerminate( en )<BR/>\r
+&nbsp; If Err.Number &lt;&gt; 0 Then<BR/>\r
+&nbsp; &nbsp; Stop : MsgBox&nbsp; "ERROR(" &amp; Err.Number &amp; ") " &amp; Err.Description &amp; _<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp;" in Class_Terminate"<BR/>\r
+&nbsp; End If<BR/>\r
 End Sub</DIV>\r
-<DIV id="text187_22" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:3446px; line-height:15px; white-space:nowrap">\r
-\95¡\90\94\82Ì\83\81\83C\83\93 *.vbs \83t\83@\83C\83\8b\82Å\8b¤\92Ê\82Ì\90Ý\92è\82ð\82P\82Â\82Ì\83t\83@\83C\83\8b\82É\82Ü\82Æ\82ß\82é\82Æ\82«\82Í\81Avbslib \82Ì</DIV>\r
-<DIV id="text187_23" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:37px; margin-top:3494px; line-height:15px; white-space:nowrap">\r
-\83\81\83C\83\93 *.vbs \83t\83@\83C\83\8b\81F</DIV>\r
-<DIV id="text187_24" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:37px; margin-top:3681px; line-height:15px; white-space:nowrap">\r
-Common.vbs \83t\83@\83C\83\8b\81F</DIV>\r
-<v:rect style="position:absolute; margin-left:50px; margin-top:3704px; width:220px; height:55px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text187_25" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:58px; margin-top:3710px; line-height:15px; white-space:nowrap">\r
-Function&nbsp; Common_setVariables( g )<BR/>\r
-&nbsp; &nbsp; g("Config") = "Debug"<BR/>\r
-End Function</DIV>\r
-<DIV id="text187_26" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:506px; margin-top:3446px; line-height:15px; white-space:nowrap">\r
-call_vbs</DIV>\r
-<DIV id="text187_27" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:3461px; line-height:15px; white-space:nowrap">\r
-\82ð\8eg\82Á\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
-<DIV id="text187_28" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:25px; margin-top:3781px; line-height:15px; white-space:nowrap">\r
-\8aÖ\98A</DIV>\r
-<DIV id="text187_29" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:72px; margin-top:3781px; line-height:15px; white-space:nowrap">\r
-<A href="%vbslib_n_new%\_src\vbslib_n.svg#SetDefaultEnvironmentVariables">\r
-\81¨ SetDefaultEnvironmentVariables</A></DIV>\r
-<DIV id="text187_30" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:2912px; line-height:15px; white-space:nowrap">\r
-<A name="GetResetMainSetting">\r
-GetResetMainSetting \8aÖ\90\94</A></DIV>\r
-<DIV id="text187_31" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:217px; margin-top:3111px; line-height:13px; white-space:nowrap">\r
-LazyDictionaryClass</DIV>\r
+<DIV id="text177_11" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:47px; margin-top:1933px; line-height:13px; white-space:nowrap">\r
+&nbsp; WScript.Echo "Finish"</DIV>\r
+<DIV id="text177_12" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:173px; margin-top:2053px; line-height:13px; white-space:nowrap">\r
+WScript.Echo "Cancel"</DIV>\r
+<DIV id="text177_13" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:71px; margin-top:2068px; line-height:13px; white-space:nowrap">\r
+WScript.Echo "Release"</DIV>\r
+<DIV id="text177_14" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#0000FF; margin-left:71px; margin-top:2098px; line-height:13px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_62.html#ErrorCheckInTerminate">\r
+ErrorCheckInTerminate</A></DIV>\r
+<DIV id="text177_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:157px; margin-top:1805px; line-height:15px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_62.html#ErrorCheckInTerminate">\r
+\81¨ ErrorCheckInTerminate (vbslib)</A></DIV>\r
+<DIV id="text177_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:143px; margin-top:2416px; line-height:15px; white-space:nowrap">\r
+\81¨ T_XML_Manually.vbs # [T_OpenForReplaceXML_Err_Manually]</DIV>\r
+<DIV id="text177_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:143px; margin-top:2398px; line-height:15px; white-space:nowrap">\r
+\81¨ T_TerminateRaise_Manually.vbs # Main</DIV>\r
 \r
-<v:line from="0,2879" to="645,2879"/>\r
-<v:line from="645,2879" to="645,3829"/>\r
-<v:line from="645,3829" to="0,3829"/>\r
-<v:line from="0,3829" to="0,2879"/>\r
+<v:line from="0,1268" to="588,1268"/>\r
+<v:line from="588,1268" to="588,2464"/>\r
+<v:line from="588,2464" to="0,2464"/>\r
+<v:line from="0,2464" to="0,1268"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 188 --> \r
-<PAGE>\r
-<A id="svgcats_vml_p188" class="to_tree" style="margin-top:3834px;" onClick="selectTreeElem( '188' );">\81©</A>\r
-<A href="#svgcats_vml_p189" class="to_next_page" style="margin-top:3834px;">\81¥</A>\r
-<A href="#svgcats_vml_p187" class="to_prev_page" style="margin-top:3834px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:3845px; width:548px; height:377px;" fillcolor="white"/>\r
-<DIV id="text188_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:3862px; line-height:15px; white-space:nowrap">\r
-<A name="xml_prop">\r
-xml \83v\83\8d\83p\83e\83B (vbsool)</A></DIV>\r
-<v:rect style="position:absolute; margin-left:24px; margin-top:3895px; width:238px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text188_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:32px; margin-top:3902px; line-height:13px; white-space:nowrap">\r
-Property Get&nbsp; ClassA::xml() as string</DIV>\r
-<DIV id="text188_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:16px; margin-top:3982px; line-height:15px; white-space:nowrap">\r
-\8eg\97p\97á\81F</DIV>\r
-<DIV id="text188_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:32px; margin-top:3932px; line-height:15px; white-space:nowrap">\r
-\83I\83u\83W\83F\83N\83g\82Ì\83f\81[\83^\82ð XML \8c`\8e®\82É\82µ\82½\82à\82Ì\81B<BR/>\r
-\8dÅ\8cã\82É\89ü\8ds\82Í\95t\82«\82Ü\82¹\82ñ\82ª\81A\95¡\90\94\8ds\82É\82È\82é\82±\82Æ\82Í\82 \82è\82Ü\82·\81B</DIV>\r
-<DIV id="text188_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:228px; margin-top:3865px; line-height:12px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#vbsool">\r
-[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
-<v:rect style="position:absolute; margin-left:24px; margin-top:4001px; width:250px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text188_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:32px; margin-top:4008px; line-height:13px; white-space:nowrap">\r
-&nbsp; start&nbsp; CreateFile( "*.xml", obj.xml )</DIV>\r
-<DIV id="text188_7" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:236px; margin-top:4008px; line-height:13px; white-space:nowrap">\r
-xml</DIV>\r
-<DIV id="text188_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:71px; margin-top:3982px; line-height:15px; white-space:nowrap">\r
-obj \82Ì xml \83v\83\8d\83p\83e\83B\82ð\81A\83e\83\93\83|\83\89\83\8a\83t\83@\83C\83\8b\82É\8fo\97Í\82µ\82Ä\8aJ\82­\81B</DIV>\r
-<DIV id="text188_9" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:44px; margin-top:4008px; line-height:13px; white-space:nowrap">\r
-start</DIV>\r
-<DIV id="text188_10" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:86px; margin-top:4008px; line-height:13px; white-space:nowrap">\r
-CreateFile</DIV>\r
-<DIV id="text188_11" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:212px; margin-top:4008px; line-height:13px; white-space:nowrap">\r
-obj</DIV>\r
-<DIV id="text188_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:32px; margin-top:4033px; line-height:15px; white-space:nowrap">\r
-\83I\83u\83W\83F\83N\83g\82Ì\83v\83\8d\83p\83e\83B\82ª\91½\82·\82¬\82Ä\8c©\82É\82­\82¢\82Æ\82«\82Í\81Axml \83v\83\8d\83p\83e\83B\82Æ\82Í\95Ê\82Ì\83v\83\8d\83p\83e\83B<BR/>\r
-\82Å\8fo\97Í\82·\82é\83v\83\8d\83p\83e\83B\82ð\90§\8cÀ\82·\82é\82Æ\82æ\82¢\82Å\82µ\82å\82¤\81B</DIV>\r
-<v:rect style="position:absolute; margin-left:63px; margin-top:4072px; width:184px; height:19px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text188_13" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:71px; margin-top:4076px; line-height:13px; white-space:nowrap">\r
-obj.XmlFilter = obj.F_GroupA</DIV>\r
-<DIV id="text188_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:57px; margin-top:4174px; line-height:15px; white-space:nowrap">\r
-<A href="#loadXML">\r
-\81¨ loadXML \83\81\83\\83b\83h</A></DIV>\r
-<DIV id="text188_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:72px; margin-top:4112px; line-height:15px; white-space:nowrap">\r
-<A href="#sub_xml_define_samp">\r
-\81¨ xml_sub \82Ì\92è\8b`\97á</A></DIV>\r
-<DIV id="text188_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:16px; margin-top:4112px; line-height:15px; white-space:nowrap">\r
-\92è\8b`\97á</DIV>\r
-<DIV id="text188_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:16px; margin-top:4156px; line-height:15px; white-space:nowrap">\r
-\8aÖ\98A</DIV>\r
-<DIV id="text188_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:57px; margin-top:4156px; line-height:15px; white-space:nowrap">\r
-<A href="#xml_sub">\r
-\81¨ xml_sub \83\81\83\\83b\83h</A></DIV>\r
-\r
-<v:line from="0,3845" to="548,3845"/>\r
-<v:line from="548,3845" to="548,4222"/>\r
-<v:line from="548,4222" to="0,4222"/>\r
-<v:line from="0,4222" to="0,3845"/>\r
-\r
-</PAGE>\r
\r
-<!-- page 189 --> \r
+<!-- page 178 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p189" class="to_tree" style="margin-top:4227px;" onClick="selectTreeElem( '189' );">\81©</A>\r
-<A href="#svgcats_vml_p190" class="to_next_page" style="margin-top:4227px;">\81¥</A>\r
-<A href="#svgcats_vml_p188" class="to_prev_page" style="margin-top:4227px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:4238px; width:606px; height:661px;" fillcolor="white"/>\r
-<v:rect style="position:absolute; margin-left:24px; margin-top:4458px; width:562px; height:310px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text189_1" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:32px; margin-top:4464px; line-height:15px; white-space:nowrap">\r
-Class&nbsp; ClassA<BR/>\r
-&nbsp; &nbsp; Public&nbsp; Name ' as string<BR/>\r
-&nbsp; &nbsp; Public&nbsp; DefinePath ' as string<BR/>\r
+<A id="svgcats_vml_p178" class="to_tree" style="margin-top:2469px;" onClick="selectTreeElem( '178' );">\81©</A>\r
+<A href="#svgcats_vml_p179" class="to_next_page" style="margin-top:2469px;">\81¥</A>\r
+<A href="#svgcats_vml_p177" class="to_prev_page" style="margin-top:2469px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:2480px; width:575px; height:654px;" fillcolor="white"/>\r
+<DIV id="text178_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:2497px; line-height:15px; white-space:nowrap">\r
+<A name="DefaultProperty">\r
+\83f\83t\83H\83\8b\83g\81E\83v\83\8d\83p\83e\83B</A></DIV>\r
+<v:rect style="position:absolute; margin-left:45px; margin-top:2672px; width:364px; height:430px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text178_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:53px; margin-top:2678px; line-height:15px; white-space:nowrap">\r
+Class&nbsp; ItemClass<BR/>\r
+&nbsp; &nbsp; Public Default Property Get&nbsp; Value()<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; Value = "Value_Get"<BR/>\r
+&nbsp; &nbsp; End Property<BR/>\r
+End Class<BR/>\r
+<BR/>\r
+Class&nbsp; DicClass<BR/>\r
+&nbsp; &nbsp; Public Default Property Get&nbsp; Item( Key )<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; Item = "Item( "+ Key +" )"<BR/>\r
+&nbsp; &nbsp; End Property<BR/>\r
 <BR/>\r
-&nbsp; &nbsp; Public Property Get&nbsp; xml() : xml=xml_sub(0) : CutLastOf xml,vbCRLF,Empty : End Property<BR/>\r
-&nbsp; &nbsp; Public Function&nbsp; xml_sub( Level )<BR/>\r
-&nbsp; &nbsp; &nbsp; &nbsp; xml_sub = GetTab(Level)+ "&lt;"+TypeName(Me)+" Name='"+ XmlAttrA( Name ) + _<BR/>\r
-&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; "' DefinePath='"+ XmlAttrA( DefineInfo.FullPath ) +"'/&gt;"+ vbCRLF<BR/>\r
-&nbsp; &nbsp; End Function<BR/>\r
+&nbsp; &nbsp; Public Property Let&nbsp; Item( Key, NewItem )<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; WScript.Echo&nbsp; Key +", "+ NewItem<BR/>\r
+&nbsp; &nbsp; End Property<BR/>\r
+<BR/>\r
+&nbsp; &nbsp; Public Property Set&nbsp; Item( Key, NewItem )<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; WScript.Echo&nbsp; Key +", "+ TypeName( NewItem )<BR/>\r
+&nbsp; &nbsp; End Property<BR/>\r
 End Class<BR/>\r
 <BR/>\r
-Function&nbsp; GetTab( Level )<BR/>\r
-&nbsp; &nbsp; GetTab = String( Level*2, " " )<BR/>\r
-End Function<BR/>\r
 <BR/>\r
-Sub&nbsp; CutLastOf( Str, LastStr )<BR/>\r
-&nbsp; &nbsp; Dim&nbsp; length = Len( LastStr )<BR/>\r
-&nbsp; &nbsp; If Right( Str, length ) = LastStr Then _<BR/>\r
-&nbsp; &nbsp; &nbsp; &nbsp; Str = Left( Str, Len( Str ) - length )<BR/>\r
-End Sub</DIV>\r
-<DIV id="text189_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:16px; margin-top:4436px; line-height:15px; white-space:nowrap">\r
-<A name="sub_xml_define_samp">\r
-\92è\8b`\97á\81F</A></DIV>\r
-<DIV id="text189_3" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:98px; margin-top:4525px; line-height:13px; white-space:nowrap">\r
-Property Get&nbsp; xml</DIV>\r
-<DIV id="text189_4" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:74px; margin-top:4465px; line-height:13px; white-space:nowrap">\r
-ClassA</DIV>\r
-<DIV id="text189_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:19px; margin-top:4783px; line-height:15px; white-space:nowrap">\r
-\8fo\97Í\97á\81F</DIV>\r
-<v:rect style="position:absolute; margin-left:24px; margin-top:4803px; width:364px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text189_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:32px; margin-top:4810px; line-height:13px; white-space:nowrap">\r
-&lt;ClassA Name="Object1" DefinePath="C:\FolderA\File1.txt"/&gt;</DIV>\r
-<DIV id="text189_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:19px; margin-top:4851px; line-height:15px; white-space:nowrap">\r
-\8aÖ\98A</DIV>\r
-<DIV id="text189_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:207px; margin-top:4383px; line-height:15px; white-space:nowrap">\r
-\81¨ XmlAttr (vbslib)</DIV>\r
-<DIV id="text189_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:207px; margin-top:4403px; line-height:15px; white-space:nowrap">\r
-\81¨ XmlText (vbslib)</DIV>\r
-<DIV id="text189_10" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:398px; margin-top:4555px; line-height:13px; white-space:nowrap">\r
-XmlAttrA</DIV>\r
-<DIV id="text189_11" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#0000FF; margin-left:272px; margin-top:4570px; line-height:13px; white-space:nowrap">\r
-<A href="#DefineInfo">\r
-DefineInfo</A></DIV>\r
-<v:rect style="position:absolute; margin-left:24px; margin-top:4284px; width:346px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text189_12" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:32px; margin-top:4291px; line-height:13px; white-space:nowrap">\r
-Function&nbsp; ClassA::xml_sub( Level as integer ) as string</DIV>\r
-<DIV id="text189_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:4259px; line-height:15px; white-space:nowrap">\r
-<A name="xml_sub">\r
-xml_sub \83\81\83\\83b\83h (vbsool)</A></DIV>\r
-<DIV id="text189_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:32px; margin-top:4318px; line-height:15px; white-space:nowrap">\r
-Level \82Ì\92l\82É\89\9e\82\82Ä\8ds\93ª\82É\8bó\94\92\82ª\95t\82«\81A\8dÅ\8cã\82É\89ü\8ds\82ª\95t\82­ xml \83v\83\8d\83p\83e\83B\82ð\95Ô\82µ\82Ü\82·\81B<BR/>\r
-\92Ê\8fí\81A</DIV>\r
-<DIV id="text189_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:64px; margin-top:4851px; line-height:15px; white-space:nowrap">\r
-\81¨ save (IXMLDOMDocument)</DIV>\r
-<DIV id="text189_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:68px; margin-top:4333px; line-height:15px; white-space:nowrap">\r
-<A href="#xml_prop">\r
-xml \83v\83\8d\83p\83e\83B</A></DIV>\r
-<DIV id="text189_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:153px; margin-top:4333px; line-height:15px; white-space:nowrap">\r
-\82Ì\93à\95\94\82Å\8eg\82¢\82Ü\82·\81B</DIV>\r
-<DIV id="text189_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:32px; margin-top:4358px; line-height:15px; white-space:nowrap">\r
-XML \82Å\8eg\82¦\82é\95\8e\9a\82É\95Ï\8a·\82µ\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
-<DIV id="text189_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:57px; margin-top:4383px; line-height:15px; white-space:nowrap">\r
-XML \83^\83O\82Ì\91®\90«\82Ì\92l</DIV>\r
-<DIV id="text189_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:57px; margin-top:4403px; line-height:15px; white-space:nowrap">\r
-XML \83^\83O\82Ì\8aO\82Ì\83e\83L\83X\83g</DIV>\r
-<DIV id="text189_21" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:334px; margin-top:4383px; line-height:15px; white-space:nowrap">\r
-\81¨ XmlAttrA (vbslib)</DIV>\r
+Set obj = new ItemClass<BR/>\r
+WScript.echo&nbsp; obj&nbsp; '// Property Get Value<BR/>\r
+<BR/>\r
+Set obj = new DicClass<BR/>\r
+WScript.echo&nbsp; obj( "Key_Get" )&nbsp; &nbsp; &nbsp; &nbsp;'// Property Get Item<BR/>\r
+obj( "Key_Let" ) = "NewItem_Let"&nbsp; &nbsp; &nbsp;'// Property Let Item<BR/>\r
+Set obj( "Key_Set" ) = new DicClass&nbsp; '// Property Set Item</DIV>\r
+<DIV id="text178_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:2530px; line-height:15px; white-space:nowrap">\r
+Property Get Value \82É Default \82ð\82Â\82¯\82½ Default Property Get Value \82É\95Ï\82¦\82é\82Æ\81A<BR/>\r
+\83v\83\8d\83p\83e\83B\96¼\82ð\8fÈ\97ª\82µ\82Ä\83\8a\81[\83h\82µ\82½\82Æ\82«\81iSet \82ð\8eg\82í\82¸\82É\91ã\93ü\82µ\82½\82Æ\82«\81j\82É\81A<BR/>\r
+Property Get Value \8aÖ\90\94\82ª\8cÄ\82Î\82ê\82Ü\82·\81B <BR/>\r
+\83\89\83C\83g\82·\82é\82Æ\82«\82Í\81AProperty Get Value \8aÖ\90\94\82â Property Set Value \8aÖ\90\94\82Í\8cÄ\82Î\82ê\82Ü\82¹\82ñ\81B</DIV>\r
+<DIV id="text178_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:2622px; line-height:15px; white-space:nowrap">\r
+Property Get Item \82É Default \82ð\82Â\82¯\82½ Default Property Get Item \82É\95Ï\82¦\82é\82Æ\81A<BR/>\r
+Property Let Item \82Æ Property Set Item \82à\83f\83t\83H\83\8b\83g\82É\82È\82è\81A\82»\82ê\82¼\82ê\82Ì\8aÖ\90\94\82ª\8cÄ\82Î\82ê\82Ü\82·\81B</DIV>\r
+<DIV id="text178_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:24px; margin-top:2606px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_08.html#dic">\r
+Dictionary \83N\83\89\83X</A></DIV>\r
+<DIV id="text178_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:123px; margin-top:2606px; line-height:15px; white-space:nowrap">\r
+\82Æ\93¯\93\99\82Ì\81iKey\88ø\90\94\82ª\92Ç\89Á\82³\82ê\82½\81j\83v\83\8d\83p\83e\83B\82Å\82Í\81A</DIV>\r
 \r
-<v:line from="0,4238" to="606,4238"/>\r
-<v:line from="606,4238" to="606,4899"/>\r
-<v:line from="606,4899" to="0,4899"/>\r
-<v:line from="0,4899" to="0,4238"/>\r
+<v:line from="0,2480" to="575,2480"/>\r
+<v:line from="575,2480" to="575,3134"/>\r
+<v:line from="575,3134" to="0,3134"/>\r
+<v:line from="0,3134" to="0,2480"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 190 --> \r
+<!-- page 179 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p190" class="to_tree" style="margin-top:4904px;" onClick="selectTreeElem( '190' );">\81©</A>\r
-<A href="#svgcats_vml_p191" class="to_next_page" style="margin-top:4904px;">\81¥</A>\r
-<A href="#svgcats_vml_p189" class="to_prev_page" style="margin-top:4904px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:4915px; width:456px; height:341px;" fillcolor="white"/>\r
-<DIV id="text190_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:4932px; line-height:15px; white-space:nowrap">\r
-<A name="loadXML">\r
-loadXML \83\81\83\\83b\83h (vbsool)</A></DIV>\r
-<v:rect style="position:absolute; margin-left:35px; margin-top:5117px; width:352px; height:70px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text190_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:5123px; line-height:15px; white-space:nowrap">\r
-&nbsp; Public Sub&nbsp; loadXML( XmlObject )<BR/>\r
-&nbsp; &nbsp; m_Name&nbsp; = XmlObject.getAttribute( "name" )<BR/>\r
-&nbsp; &nbsp; m_Value = CInt2( XmlObject.getAttribute( "value" ) )<BR/>\r
-&nbsp; End Sub</DIV>\r
-<v:rect style="position:absolute; margin-left:24px; margin-top:4961px; width:322px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text190_3" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:32px; margin-top:4968px; line-height:13px; white-space:nowrap">\r
-Sub&nbsp; ClassA::loadXML( XmlObject as IXMLDOMElement )</DIV>\r
-<DIV id="text190_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:32px; margin-top:4995px; line-height:15px; white-space:nowrap">\r
-DOM \82É\82æ\82é XML \97v\91f\82ð\8eg\82Á\82Ä\81A\83I\83u\83W\83F\83N\83g\82Ì\91®\90«\92l\82ð\90Ý\92è\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text190_5" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:242px; margin-top:4968px; line-height:13px; white-space:nowrap">\r
-IXMLDOMElement</DIV>\r
-<DIV id="text190_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:5098px; line-height:15px; white-space:nowrap">\r
-\92è\8b`\97á\81F</DIV>\r
-<DIV id="text190_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:26px; margin-top:5208px; line-height:15px; white-space:nowrap">\r
-\8aÖ\98A</DIV>\r
-<DIV id="text190_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:68px; margin-top:5208px; line-height:15px; white-space:nowrap">\r
-\81¨ new_ObjectFromStream (vbslib)</DIV>\r
-<DIV id="text190_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:5031px; line-height:15px; white-space:nowrap">\r
-\8eg\97p\97á\81F</DIV>\r
-<v:rect style="position:absolute; margin-left:35px; margin-top:5052px; width:304px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text190_10" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:5059px; line-height:13px; white-space:nowrap">\r
-&nbsp; sample.loadXML&nbsp; LoadXML( "sample.xml", Empty )</DIV>\r
-<DIV id="text190_11" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:151px; margin-top:5059px; line-height:13px; white-space:nowrap">\r
-LoadXML</DIV>\r
-<DIV id="text190_12" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:127px; margin-top:5154px; line-height:13px; white-space:nowrap">\r
-CInt2</DIV>\r
-<DIV id="text190_13" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:277px; margin-top:5139px; line-height:13px; white-space:nowrap">\r
-name</DIV>\r
-<DIV id="text190_14" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:319px; margin-top:5154px; line-height:13px; white-space:nowrap">\r
-value</DIV>\r
-<DIV id="text190_15" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:67px; margin-top:5139px; line-height:13px; white-space:nowrap">\r
-m_Name</DIV>\r
-<DIV id="text190_16" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:67px; margin-top:5154px; line-height:13px; white-space:nowrap">\r
-m_Value</DIV>\r
+<A id="svgcats_vml_p179" class="to_tree" style="margin-top:3139px;" onClick="selectTreeElem( '179' );">\81©</A>\r
+<A href="#svgcats_vml_p180" class="to_next_page" style="margin-top:3139px;">\81¥</A>\r
+<A href="#svgcats_vml_p178" class="to_prev_page" style="margin-top:3139px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:3150px; width:399px; height:153px;" fillcolor="white"/>\r
+<DIV id="text179_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:3167px; line-height:15px; white-space:nowrap">\r
+<A name="With">\r
+With</A></DIV>\r
+<v:rect style="position:absolute; margin-left:30px; margin-top:3201px; width:322px; height:70px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text179_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:38px; margin-top:3207px; line-height:15px; white-space:nowrap">\r
+Set obj = Wscript.CreateObject("Excel.Application")<BR/>\r
+With obj<BR/>\r
+&nbsp; .Visible = True<BR/>\r
+End With</DIV>\r
 \r
-<v:line from="0,4915" to="456,4915"/>\r
-<v:line from="456,4915" to="456,5256"/>\r
-<v:line from="456,5256" to="0,5256"/>\r
-<v:line from="0,5256" to="0,4915"/>\r
+<v:line from="0,3150" to="399,3150"/>\r
+<v:line from="399,3150" to="399,3303"/>\r
+<v:line from="399,3303" to="0,3303"/>\r
+<v:line from="0,3303" to="0,3150"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 191 --> \r
+<!-- page 180 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p191" class="to_tree" style="margin-top:5261px;" onClick="selectTreeElem( '191' );">\81©</A>\r
-<A href="#svgcats_vml_p192" class="to_next_page" style="margin-top:5261px;">\81¥</A>\r
-<A href="#svgcats_vml_p190" class="to_prev_page" style="margin-top:5261px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:5272px; width:585px; height:953px;" fillcolor="white"/>\r
-<DIV id="text191_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:5289px; line-height:15px; white-space:nowrap">\r
-<A name="DefineInfo">\r
-DefineInfo \83v\83\8d\83p\83e\83B</A></DIV>\r
-<v:rect style="position:absolute; margin-left:30px; margin-top:5657px; width:508px; height:280px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text191_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:38px; margin-top:5663px; line-height:15px; white-space:nowrap">\r
-Option Explicit<BR/>\r
+<A id="svgcats_vml_p180" class="to_tree" style="margin-top:3308px;" onClick="selectTreeElem( '180' );">\81©</A>\r
+<A href="#svgcats_vml_p181" class="to_next_page" style="margin-top:3308px;">\81¥</A>\r
+<A href="#svgcats_vml_p179" class="to_prev_page" style="margin-top:3308px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:3319px; width:519px; height:886px;" fillcolor="white"/>\r
+<DIV id="text180_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:3376px; line-height:15px; white-space:nowrap">\r
+VBScript \82È\82Ç\81AEmpty \82Å\95K\82¸\8f\89\8aú\89»\82³\82ê\82é\83N\83\89\83X\82Ì\8fê\8d\87\81AEmpty \82Å\82Í\82È\82¢\82à\82Ì<BR/>\r
+\82Ì\82Ý\97L\8cø\82Æ\82·\82é\81B</DIV>\r
+<DIV id="text180_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:25px; margin-top:3336px; line-height:15px; white-space:nowrap">\r
+<A name="part_empty">\r
+\95\94\95ªEmpty\8d\\91¢\91Ì\83p\83\89\83\81\81[\83^</A></DIV>\r
+<v:rect style="position:absolute; margin-left:33px; margin-top:3443px; width:202px; height:70px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text180_3" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:41px; margin-top:3449px; line-height:15px; white-space:nowrap">\r
+&nbsp; Dim&nbsp; configs = new TheConfigs<BR/>\r
+&nbsp; configs.m_Param1 = 10<BR/>\r
+&nbsp; configs.m_Param2 = "abc"<BR/>\r
+&nbsp; obj.SetConfigs&nbsp; configs</DIV>\r
+<v:rect style="position:absolute; margin-left:284px; margin-top:3443px; width:124px; height:85px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text180_4" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:292px; margin-top:3449px; line-height:15px; white-space:nowrap">\r
+Class&nbsp; TheConfigs<BR/>\r
+&nbsp; Public&nbsp; m_Param1<BR/>\r
+&nbsp; Public&nbsp; m_Param2<BR/>\r
+&nbsp; Public&nbsp; m_Param3<BR/>\r
+End Class</DIV>\r
+<DIV id="text180_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:41px; margin-top:3520px; line-height:15px; white-space:nowrap">\r
+configs.Param3 \82Í Empty \82È\82Ì\82Å\96³\8cø</DIV>\r
+<DIV id="text180_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:3419px; line-height:15px; white-space:nowrap">\r
+\83T\83\93\83v\83\8b</DIV>\r
+<DIV id="text180_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:3559px; line-height:15px; white-space:nowrap">\r
+\95¡\90\94\82Ì .vbs \83t\83@\83C\83\8b\82Å\8b¤\97L\82·\82é\82Æ\82«\82Í\81A\8fã\8bL\82Ì\83N\83\89\83X\82Ì\83I\83u\83W\83F\83N\83g\82ð\8eæ\93¾\82·\82é<BR/>\r
+\8aÖ\90\94\82ð\97p\88Ó\82·\82é\82Æ\82æ\82¢\82Å\82µ\82å\82¤\81B<BR/>\r
+\83N\83\89\83X\82Ì\91\8dÝ\83`\83F\83b\83N\82Í\81A\82±\82Ì\8eæ\93¾\8aÖ\90\94\82ð\8eÀ\8ds\82·\82é\82Æ\82«\82É\8ds\82í\82ê\82Ü\82·\81B C\8c¾\8cê<BR/>\r
+\82Ì\82æ\82¤\82É\81A\83w\83b\83_\82ð\92Ê\82µ\82Ä\82¨\82­\82æ\82¤\82È\91Î\89\9e\82Í\95s\97v\82Å\82·\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:33px; margin-top:3663px; width:382px; height:235px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text180_8" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:41px; margin-top:3669px; line-height:15px; white-space:nowrap">\r
+Class&nbsp; TheClass<BR/>\r
+&nbsp; Public&nbsp; m_Configs ' as TheConfigs<BR/>\r
 <BR/>\r
-Dim&nbsp; g_SrcPath<BR/>\r
-Class&nbsp; Sample_vbs&nbsp; '// has_interface_of DefineInfoClass<BR/>\r
-&nbsp; Public&nbsp; FullPath<BR/>\r
-&nbsp; Public&nbsp; DataPath<BR/>\r
-&nbsp; Private Sub&nbsp; Class_Initialize()<BR/>\r
-&nbsp; &nbsp; FullPath = g_SrcPath<BR/>\r
-&nbsp; &nbsp; DataPath = GetAbsPath( "..\Data", g_SrcPath )<BR/>\r
-&nbsp; End Sub<BR/>\r
-End Class<BR/>\r
-Dim&nbsp; g_Sample_vbs<BR/>\r
-Set&nbsp; g_Sample_vbs =_<BR/>\r
-&nbsp; &nbsp;new Sample_vbs<BR/>\r
+Private Sub&nbsp; Class_Initialize<BR/>\r
+&nbsp; Set Me.m_Configs = new TheConfigs<BR/>\r
+End Sub<BR/>\r
 <BR/>\r
-Class&nbsp; SampleObj<BR/>\r
-&nbsp; Public Property Get&nbsp; DefineInfo() : Set DefineInfo = g_Sample_vbs : End Property<BR/>\r
+Public Sub&nbsp; SetConfigs( Configs )<BR/>\r
+&nbsp; With Configs<BR/>\r
+&nbsp; &nbsp; If not IsEmpty( .m_Param1 ) Then&nbsp; Me.m_Param1 = .m_Param1<BR/>\r
+&nbsp; &nbsp; If not IsEmpty( .m_Param2 ) Then&nbsp; Me.m_Param2 = .m_Param2<BR/>\r
+&nbsp; &nbsp; If not IsEmpty( .m_Param3 ) Then&nbsp; Me.m_Param3 = .m_Param3<BR/>\r
+&nbsp; End With<BR/>\r
+End Sub<BR/>\r
 End Class</DIV>\r
-<DIV id="text191_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:31px; margin-top:5369px; line-height:15px; white-space:nowrap">\r
-\83I\83u\83W\83F\83N\83g\82ð\92è\8b`\82µ\82Ä\82¢\82é<BR/>\r
-\90Ã\93I\83I\83u\83W\83F\83N\83g\82ð\92è\8b`\82µ\82Ä\82¢\82é\8fê\8f\8a\82â\81A\8aÖ\98A\82·\82é\83t\83@\83C\83\8b\83p\83X\82È\82Ç\82ð\8eQ\8fÆ\82µ\82Ü\82·\81B<BR/>\r
-DefineInfo \82Æ\82¢\82¤\83v\83\8d\83p\83e\83B\96¼\82Í\95Ï\82¦\82È\82¢\82Å\82­\82¾\82³\82¢\81B DefineInfoClass \82Í\81AFullPath \83v\83\8d\83p\83e\83B<BR/>\r
-\82Ì\82Ý\82ð\92è\8b`\82µ\82Ä\82¢\82é\83C\83\93\83^\81[\83t\83F\83C\83X\82Å\82·\81B</DIV>\r
-<DIV id="text191_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:20px; margin-top:6156px; line-height:15px; white-space:nowrap">\r
-\8aÖ\98A</DIV>\r
-<DIV id="text191_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:63px; margin-top:6156px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#get_ClassA">\r
-\81¨ \90Ã\93I\83I\83u\83W\83F\83N\83g</A></DIV>\r
-<v:rect style="position:absolute; margin-left:30px; margin-top:5978px; width:508px; height:100px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text191_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:38px; margin-top:5984px; line-height:15px; white-space:nowrap">\r
-Dim&nbsp; g_SrcPath<BR/>\r
-Dim&nbsp; g_Sample_vbs : get_DefineInfoObject&nbsp; g_Sample_vbs, g_SrcPath<BR/>\r
+<DIV id="text180_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:34px; margin-top:3644px; line-height:15px; white-space:nowrap">\r
+\8eÀ\91\95\97á</DIV>\r
+<v:rect style="position:absolute; margin-left:33px; margin-top:3910px; width:208px; height:160px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text180_10" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:41px; margin-top:3916px; line-height:15px; white-space:nowrap">\r
+Class&nbsp; TheConfigs<BR/>\r
+&nbsp; Public&nbsp; m_Param1<BR/>\r
+&nbsp; Public&nbsp; m_Param2<BR/>\r
+&nbsp; Public&nbsp; m_Param3<BR/>\r
+<BR/>\r
+Public Property Get&nbsp; m_Param4<BR/>\r
+&nbsp; m_Param4 = m_Param1 + m_Param2<BR/>\r
+End Property<BR/>\r
 <BR/>\r
-Class&nbsp; SampleObj<BR/>\r
-&nbsp; Public Property Get&nbsp; DefineInfo() : Set DefineInfo = g_Sample_vbs : End Property<BR/>\r
-End Class</DIV>\r
-<DIV id="text191_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:22px; margin-top:5957px; line-height:15px; white-space:nowrap">\r
-FullPath \83v\83\8d\83p\83e\83B\82µ\82©\96³\82¢\82Æ\82«\82Í\81Avbslib \82ð\8eg\82Á\82Ä\89º\8bL\82Ì\82æ\82¤\82É\8bL\8fq\82·\82é\82±\82Æ\82à\82Å\82«\82Ü\82·\81B</DIV>\r
-<DIV id="text191_8" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:158px; margin-top:6000px; line-height:13px; white-space:nowrap">\r
-get_DefineInfoObject</DIV>\r
-<v:rect style="position:absolute; margin-left:29px; margin-top:5326px; width:250px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text191_9" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:37px; margin-top:5333px; line-height:13px; white-space:nowrap">\r
-Property&nbsp; DefineInfo as DefineInfoClass</DIV>\r
-<DIV id="text191_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:20px; margin-top:6098px; line-height:15px; white-space:nowrap">\r
-\88ê\94Ê\96¼\82ª Name \83v\83\8d\83p\83e\83B\82É\93ü\82Á\82Ä\82¢\82é\83I\83u\83W\83F\83N\83g\82Ì DefineInfo \82Í\81A\90³\8e®\96¼\82ª Name<BR/>\r
-\83v\83\8d\83p\83e\83B\82É\93ü\82Á\82Ä\82¢\82é\83I\83u\83W\83F\83N\83g\82Æ\93¯\82\93à\97e\82É\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text191_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:63px; margin-top:6177px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_11.html#naming">\r
-\81¨ Name \83v\83\8d\83p\83e\83B</A></DIV>\r
-<DIV id="text191_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:191px; margin-top:5291px; line-height:12px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#vbsool">\r
-[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
-<DIV id="text191_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:31px; margin-top:5637px; line-height:15px; white-space:nowrap">\r
-\92è\8b`\97á\81F</DIV>\r
-<DIV id="text191_14" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:41px; margin-top:5555px; line-height:13px; white-space:nowrap">\r
-ClassA</DIV>\r
-<DIV id="text191_15" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:59px; margin-top:5572px; line-height:13px; white-space:nowrap">\r
-DefineInfoClass</DIV>\r
-<DIV id="text191_16" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:174px; margin-top:5572px; line-height:13px; white-space:nowrap">\r
-.DefineInfo</DIV>\r
-<DIV id="text191_17" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:186px; margin-top:5588px; line-height:13px; white-space:nowrap">\r
-.FullPath</DIV>\r
-<DIV id="text191_18" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:76px; margin-top:5588px; line-height:13px; white-space:nowrap">\r
-string</DIV>\r
-<DIV id="text191_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:185px; margin-top:5369px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#static_object_vbs">\r
-\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b</A></DIV>\r
-<DIV id="text191_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:306px; margin-top:5369px; line-height:15px; white-space:nowrap">\r
-\82É\8aÖ\82·\82é\8fî\95ñ\82Å\82·\81B</DIV>\r
-<v:rect style="position:absolute; margin-left:42px; margin-top:5443px; width:304px; height:55px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text191_21" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:50px; margin-top:5449px; line-height:15px; white-space:nowrap">\r
-Class&nbsp; DefineInfoClass&nbsp; '// defined_as_interface<BR/>\r
-&nbsp; Public&nbsp; FullPath&nbsp; ' as string<BR/>\r
 End Class</DIV>\r
-<DIV id="text191_22" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:28px; margin-top:5530px; line-height:15px; white-space:nowrap">\r
-\83f\81[\83^\8d\\91¢</DIV>\r
+<DIV id="text180_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:34px; margin-top:4084px; line-height:15px; white-space:nowrap">\r
+\95\94\95ªEmpty\8d\\91¢\91Ì\83p\83\89\83\81\81[\83^\82Ì\83N\83\89\83X\82Í\81A\82»\82Ì\82Ü\82Ü\90Ý\92è\92l\82ð\8ai\94[\82·\82é\83N\83\89\83X\82Æ\82µ\82Ä<BR/>\r
+\8eg\82¤\82±\82Æ\82ª\82Å\82«\82Ü\82·\81\94h\90\91®\90«\82ð Get \83v\83\8d\83p\83e\83B\82Å\92è\8b`\82·\82é\82Æ\82æ\82¢\82Å\82µ\82å\82¤\81B</DIV>\r
+<DIV id="text180_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:34px; margin-top:4127px; line-height:15px; white-space:nowrap">\r
+\83\81\83\93\83o\95Ï\90\94\82Ï\83v\83\8d\83p\83e\83B\82Ì\96¼\91O\82Ì\90æ\93ª\82É m_ \82ª\95t\82¢\82Ä\82¢\82é\82Æ\81Agrep \8e\9e\82É\93K\90Ø\82È<BR/>\r
+\8fê\8f\8a\82ð\8c©\82Â\82¯\82â\82·\82­\82È\82è\82Ü\82·\81\83\8d\81[\83J\83\8b\95Ï\90\94\82â\83N\83\89\83X\96¼\82Æ\83o\83b\83e\83B\83\93\83O\82µ\82È\82­\82È\82è<BR/>\r
+\82Ü\82·\81B</DIV>\r
 \r
-<v:line from="0,5272" to="585,5272"/>\r
-<v:line from="585,5272" to="585,6225"/>\r
-<v:line from="585,6225" to="0,6225"/>\r
-<v:line from="0,6225" to="0,5272"/>\r
+<v:line from="0,3319" to="519,3319"/>\r
+<v:line from="519,3319" to="519,4205"/>\r
+<v:line from="519,4205" to="0,4205"/>\r
+<v:line from="0,4205" to="0,3319"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 192 --> \r
+<!-- page 181 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p192" class="to_tree" style="margin-top:6230px;" onClick="selectTreeElem( '192' );">\81©</A>\r
-<A href="#svgcats_vml_p193" class="to_next_page" style="margin-top:6230px;">\81¥</A>\r
-<A href="#svgcats_vml_p191" class="to_prev_page" style="margin-top:6230px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:6241px; width:477px; height:359px;" fillcolor="white"/>\r
-<DIV id="text192_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:6258px; line-height:15px; white-space:nowrap">\r
-<A name="DebugMode">\r
-DebugMode \83v\83\8d\83p\83e\83B</A></DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:6408px; width:238px; height:160px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text192_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:6414px; line-height:15px; white-space:nowrap">\r
-Class&nbsp; ClassA<BR/>\r
-&nbsp; Public&nbsp; m_DebugMode<BR/>\r
-&nbsp; Public&nbsp; F_BreakAtSetting&nbsp; '// Const<BR/>\r
-<BR/>\r
-&nbsp; Private Sub&nbsp; Class_Initialize()<BR/>\r
-&nbsp; &nbsp; Me.F_BreakAtSetting = 1<BR/>\r
-&nbsp; End Sub<BR/>\r
-End Class<BR/>\r
-<BR/>\r
-Me.m_DebugMode = Me.F_BreakAtSetting</DIV>\r
-<v:rect style="position:absolute; margin-left:26px; margin-top:6288px; width:268px; height:40px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text192_3" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:34px; margin-top:6294px; line-height:15px; white-space:nowrap">\r
-Dim&nbsp; ClassA::m_DebugMode&nbsp; as integer<BR/>\r
-Dim&nbsp; ClassA::m_DebugMode_Param1&nbsp; as string</DIV>\r
-<DIV id="text192_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:34px; margin-top:6386px; line-height:15px; white-space:nowrap">\r
-\83T\83\93\83v\83\8b\81F</DIV>\r
-<DIV id="text192_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:34px; margin-top:6340px; line-height:15px; white-space:nowrap">\r
-m_DebugMode \82©\82ç\8en\82Ü\82é\83v\83\8d\83p\83e\83B\82Í\81A<BR/>\r
-\83f\83o\83b\83O\8e\9e\82Ì\83u\83\8c\81[\83N\83|\83C\83\93\83g\82â\83f\83o\83b\83O\8fo\97Í\82Ì\97L\8cø\96³\8cø\82ð\90§\8cä\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text192_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:72px; margin-top:6550px; line-height:13px; white-space:nowrap">\r
-m_DebugMode</DIV>\r
-<DIV id="text192_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:224px; margin-top:6260px; line-height:12px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#vbsool">\r
-[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
+<A id="svgcats_vml_p181" class="to_tree" style="margin-top:4210px;" onClick="selectTreeElem( '181' );">\81©</A>\r
+<A href="#svgcats_vml_p182" class="to_next_page" style="margin-top:4210px;">\81¥</A>\r
+<A href="#svgcats_vml_p180" class="to_prev_page" style="margin-top:4210px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:4221px; width:563px; height:649px;" fillcolor="white"/>\r
+<DIV id="text181_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:4238px; line-height:15px; white-space:nowrap">\r
+<A name="vbsool">\r
+vbsool : VBScript \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ver2.0</A></DIV>\r
+<DIV id="text181_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:4274px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\8ew\8cü\82ð\93¥\82Ü\82¦\82½\83v\83\8d\83O\83\89\83\80\82ð VBScript \8c¾\8cê\82Å\8bL\8fq\82·\82é\82Æ\82«\82Ì\93Æ\8e©\95W\8f\80\82Å\82·\81B<BR/>\r
+ver1.0 \82Í\81Avbslib 3.00 \82É\95t\91®\82Ì\83h\83L\83\85\83\81\83\93\83g\82ð\8eQ\8fÆ\82µ\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
+<DIV id="text181_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:4801px; line-height:15px; white-space:nowrap">\r
+\8aÖ\98A</DIV>\r
+<DIV id="text181_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:71px; margin-top:4801px; line-height:15px; white-space:nowrap">\r
+\81¨ COOL : C \8c¾\8cê\82É\82æ\82é\83I\83u\83W\83F\83N\83g\8bL\8fq\96@</DIV>\r
+<DIV id="text181_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4388px; line-height:15px; white-space:nowrap">\r
+<A href="#new_objs">\r
+\81¨ new_ClassA_array</A></DIV>\r
+<DIV id="text181_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4388px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\82Ì\94z\97ñ\82ð\90\90¬\82·\82é</DIV>\r
+<DIV id="text181_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4737px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_14.html#DebugMode">\r
+\81¨ DebugMode</A></DIV>\r
+<DIV id="text181_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4737px; line-height:15px; white-space:nowrap">\r
+\83u\83\8c\81[\83N\83|\83C\83\93\83g\82È\82Ç\83f\83o\83b\83O\8b@\94\\82Ì\97L\8cø\96³\8cø\82ð\90§\8cä\82·\82é</DIV>\r
+<DIV id="text181_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4411px; line-height:15px; white-space:nowrap">\r
+<A href="#vbsool_inf">\r
+\81¨ ClassI</A></DIV>\r
+<DIV id="text181_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4411px; line-height:15px; white-space:nowrap">\r
+\83\81\83\\83b\83h\82â\83v\83\8d\83p\83e\83B\82Ì\83Z\83b\83g\81AJava \82Ì\83C\83\93\83^\81[\83t\83F\83C\83X\82É\91\8a\93\96</DIV>\r
+<DIV id="text181_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4328px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_10.html#class">\r
+\81¨ VBScript \82Ì\83N\83\89\83X</A></DIV>\r
+<DIV id="text181_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4328px; line-height:15px; white-space:nowrap">\r
+\82Ü\82¸\81A\8c¾\8cê\8ed\97l\82ð\93¥\82Ü\82¦\82é</DIV>\r
+<DIV id="text181_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4691px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\82Ì\83f\81[\83^\82ð XML \8c`\8e®\82É\82µ\82½\82à\82Ì</DIV>\r
+<DIV id="text181_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4691px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_14.html#xml_prop">\r
+\81¨ xml \83v\83\8d\83p\83e\83B</A></DIV>\r
+<DIV id="text181_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4434px; line-height:15px; white-space:nowrap">\r
+<A href="#get_ClassA">\r
+\81¨ get_Object</A></DIV>\r
+<DIV id="text181_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4434px; line-height:15px; white-space:nowrap">\r
+\90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\8eæ\93¾\81A\89\89\8eZ\8aí\97v\8b\81</DIV>\r
+<DIV id="text181_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:68px; margin-top:4529px; line-height:12px; white-space:nowrap">\r
+<A href="#get_StaticObjects">\r
+\81¨ get_StaticObjects</A></DIV>\r
+<DIV id="text181_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:219px; margin-top:4526px; line-height:15px; white-space:nowrap">\r
+\90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\88ê\97\97</DIV>\r
+<DIV id="text181_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4668px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_14.html#m_Delegate">\r
+\81¨ m_Delegate</A></DIV>\r
+<DIV id="text181_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4668px; line-height:15px; white-space:nowrap">\r
+\88Ï\8f÷\90æ\82Ì\83I\83u\83W\83F\83N\83g</DIV>\r
+<DIV id="text181_21" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4760px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_14.html#coding">\r
+\81¨ VBS \82Ì\83R\81[\83f\83B\83\93\83O\83\8b\81[\83\8b</A></DIV>\r
+<DIV id="text181_22" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4576px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_13.html#naming">\r
+\81¨ Name \83v\83\8d\83p\83e\83B</A></DIV>\r
+<DIV id="text181_23" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4576px; line-height:15px; white-space:nowrap">\r
+\96¼\91O\82Ì\8eQ\8fÆ\81A\88ê\94Ê\96¼ (Name) \82Æ\90³\8e®\96¼ (TrueName)</DIV>\r
+<DIV id="text181_24" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:68px; margin-top:4506px; line-height:12px; white-space:nowrap">\r
+<A href="#get_ObjectsFromFile">\r
+\81¨ get_ObjectsFromFile</A></DIV>\r
+<DIV id="text181_25" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:68px; margin-top:4483px; line-height:12px; white-space:nowrap">\r
+<A href="#static_object_vbs">\r
+\81¨ get_ObjectFromFile</A></DIV>\r
+<DIV id="text181_26" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:219px; margin-top:4480px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\82©\82ç\83I\83u\83W\83F\83N\83g\82ð\8eæ\93¾\82·\82é</DIV>\r
+<DIV id="text181_27" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:219px; margin-top:4503px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83H\83\8b\83_\82©\82ç\83I\83u\83W\83F\83N\83g\82ð\8eæ\93¾\82·\82é</DIV>\r
+<DIV id="text181_28" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4714px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_14.html#DefineInfo">\r
+\81¨ DefineInfo</A></DIV>\r
+<DIV id="text181_29" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4714px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\82É\8aÖ\82·\82é\8fî\95ñ</DIV>\r
+<DIV id="text181_30" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:38px; margin-top:4365px; line-height:15px; white-space:nowrap">\r
+\81¨ new_ClassA_Object</DIV>\r
+<DIV id="text181_31" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4365px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\82ð\90\90¬\82·\82é</DIV>\r
+<DIV id="text181_32" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:68px; margin-top:4460px; line-height:12px; white-space:nowrap">\r
+<A href="#get_ClassA_file">\r
+\81¨ get_ClassA_FromFile</A></DIV>\r
+<DIV id="text181_33" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:219px; margin-top:4458px; line-height:15px; white-space:nowrap">\r
+\83t\83@\83C\83\8b\8c`\8e®\82Ì\83I\83u\83W\83F\83N\83g\82ð\91\80\8dì\82·\82é</DIV>\r
+<DIV id="text181_34" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4622px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_14.html#GetMainSetting">\r
+\81¨ GetMainSetting</A></DIV>\r
+<DIV id="text181_35" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4622px; line-height:15px; white-space:nowrap">\r
+\83\81\83C\83\93 .vbs \83t\83@\83C\83\8b\82É\8bL\8fq\82·\82é\83\86\81[\83U\81[\92è\8b`\83f\81[\83^</DIV>\r
+<DIV id="text181_36" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4599px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_13.html#Item">\r
+\81¨ Item \83v\83\8d\83p\83e\83B</A></DIV>\r
+<DIV id="text181_37" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4599px; line-height:15px; white-space:nowrap">\r
+\93®\93I\82É\92Ç\89Á\92è\8b`\82·\82é\83\81\83\93\83o\81[</DIV>\r
+<DIV id="text181_38" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:38px; margin-top:4645px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_13.html#vbsool_event">\r
+\81¨ EventResponders</A></DIV>\r
+<DIV id="text181_39" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:189px; margin-top:4645px; line-height:15px; white-space:nowrap">\r
+\83C\83x\83\93\83g\82É\89\9e\93\9a\82·\82é\83\81\83\\83b\83h</DIV>\r
+<DIV id="text181_40" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:68px; margin-top:4552px; line-height:12px; white-space:nowrap">\r
+<A href="vbs_memo_13.html#get_ModuleConsts">\r
+\81¨ get_ModuleConsts</A></DIV>\r
+<DIV id="text181_41" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:219px; margin-top:4550px; line-height:15px; white-space:nowrap">\r
+\83N\83\89\83X\82Ì\92è\90\94</DIV>\r
+<DIV id="text181_42" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:71px; margin-top:4822px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_07.html#OptionExplicit">\r
+\81¨ Option Explicit \95Ï\90\94\90é\8c¾\95s\97v\98_</A></DIV>\r
 \r
-<v:line from="0,6241" to="477,6241"/>\r
-<v:line from="477,6241" to="477,6600"/>\r
-<v:line from="477,6600" to="0,6600"/>\r
-<v:line from="0,6600" to="0,6241"/>\r
+<v:line from="0,4221" to="563,4221"/>\r
+<v:line from="563,4221" to="563,4870"/>\r
+<v:line from="563,4870" to="0,4870"/>\r
+<v:line from="0,4870" to="0,4221"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 193 --> \r
+<!-- page 182 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p193" class="to_tree" style="margin-top:6605px;" onClick="selectTreeElem( '193' );">\81©</A>\r
-<A href="#svgcats_vml_p194" class="to_next_page" style="margin-top:6605px;">\81¥</A>\r
-<A href="#svgcats_vml_p192" class="to_prev_page" style="margin-top:6605px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:6616px; width:594px; height:1211px;" fillcolor="white"/>\r
-<DIV id="text193_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:6633px; line-height:15px; white-space:nowrap">\r
-<A name="coding">\r
-VBS \82Ì\83R\81[\83f\83B\83\93\83O\83\8b\81[\83\8b</A></DIV>\r
-<DIV id="text193_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:6984px; line-height:15px; white-space:nowrap">\r
-\83X\83e\81[\83g\83\81\83\93\83g</DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:7009px; width:82px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_3" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:7016px; line-height:13px; white-space:nowrap">\r
-Func&nbsp; param</DIV>\r
-<DIV id="text193_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:54px; margin-top:7045px; line-height:15px; white-space:nowrap">\r
-\8aÖ\90\94\96¼\82Æ\83p\83\89\83\81\81[\83^\82Ì\8aÔ\82Í 2\82Â\82Ì\8bó\94\92\82É\82·\82é\81B<BR/>\r
-\8a\87\8cÊ\82Ì\82½\82ß\82É Call \82ð\8eg\82¤\82Æ\81ACall \82ª\88Ó\96¡\93I\8eå\96ð\82É\82È\82Á\82Ä\8d¬\97\90\82·\82é\82½\82ß\81A\8eg\82í\82È\82¢\81B</DIV>\r
-<DIV id="text193_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:32px; margin-top:6665px; line-height:15px; white-space:nowrap">\r
-VBScript \82Ì\83R\81[\83h\82ð\81A\8c©\82â\82·\82¢\83R\81[\83h\81A\95K\97v\82È\8fî\95ñ\82ª\95\\8c»\82³\82ê\82Ä\82¢\82é\83R\81[\83h\82É\82·\82é\95û\96@\82Å\82·\81B</DIV>\r
-<DIV id="text193_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:7102px; line-height:15px; white-space:nowrap">\r
-\8a\87\8cÊ\82Ì\93à\91¤</DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:7126px; width:94px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_7" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:7133px; line-height:13px; white-space:nowrap">\r
-Array( 1, 2 )</DIV>\r
-<DIV id="text193_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:54px; margin-top:7161px; line-height:15px; white-space:nowrap">\r
-\8aÖ\90\94\96¼\82Æ\83p\83\89\83\81\81[\83^\82Ì\8bæ\90Ø\82è\82ð\96¾\8am\82É\82µ\82Ü\82·\81B<BR/>\r
-\8aî\96{\93I\82É\8bó\94\92\82ð\93ü\82ê\82é\82ª\81A\83p\83\89\83\81\81[\83^\82Ì\93à\97e\82ª\96³\8e\8b\82Å\82«\82½\82è\81A\8aÖ\90\94\82Æ\83p\83\89\83\81\81[\83^\82Ì<BR/>\r
-\97¼\95û\82Å\82P\82Â\82Ì\82à\82Ì\82ð\95\\8c»\82µ\82Ä\82¢\82é\82Ì\82È\82ç\93ü\82ê\82È\82­\82Ä\82æ\82¢\81B\97á Hex2Dec("3F")</DIV>\r
-<DIV id="text193_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:7432px; line-height:15px; white-space:nowrap">\r
-\8aÖ\90\94\83R\81[\83\8b\82Ì\8fo\97Í\95Ï\90\94</DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:7454px; width:178px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_10" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:7461px; line-height:13px; white-space:nowrap">\r
-Func&nbsp; param '// [out] param</DIV>\r
-<DIV id="text193_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:6880px; line-height:15px; white-space:nowrap">\r
-\83R\83\81\83\93\83g</DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:6903px; width:82px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_12" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:6910px; line-height:13px; white-space:nowrap">\r
-'// comment</DIV>\r
-<DIV id="text193_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:54px; margin-top:6936px; line-height:15px; white-space:nowrap">\r
-// \82Í\91¾\90ü\82Ì\97Ö\8as\82É\91\8a\93\96\82µ\81A\83R\83\81\83\93\83g\82Å\82 \82é\82±\82Æ\82ð\8e¯\95Ê\82µ\82â\82·\82­\82µ\82Ü\82·\81B<BR/>\r
-\82¢\82­\82Â\82©\82Ì\95\82©\82ç\82È\82é\88Ó\96¡\93I\82È\83u\83\8d\83b\83N\82Ì\90æ\93ª\8ds\82É\83R\83\81\83\93\83g\82ð\8f\91\82«\82Ü\82·\81B</DIV>\r
-<DIV id="text193_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:54px; margin-top:7487px; line-height:15px; white-space:nowrap">\r
-\83f\83o\83b\83O\82·\82é\82Æ\82«\82Í\81A\95Ï\90\94\92l\82Ì\95Ï\89»\82ð\92Ç\82¤\82Ì\82Å\81A\8fo\97Í\82ð\96¾\8am\82É\82µ\82Ü\82·</DIV>\r
-<DIV id="text193_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:7518px; line-height:15px; white-space:nowrap">\r
-\8aÖ\90\94\92è\8b`\82Ì\8fo\97Í\95Ï\90\94</DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:7540px; width:292px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_16" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:7547px; line-height:13px; white-space:nowrap">\r
-Sub&nbsp; Func( ParamA, out_ParamB, in_out_ParamC )</DIV>\r
-<DIV id="text193_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:54px; margin-top:7573px; line-height:15px; white-space:nowrap">\r
-\8fo\97Í\95Ï\90\94\82Í\81Aout_ \82©\82ç\8en\82ß\82Ü\82·\81B<BR/>\r
-\93ü\8fo\97Í\95Ï\90\94\82Í\81Ain_out_ \82©\82ç\8en\82ß\82Ü\82·\81B</DIV>\r
-<DIV id="text193_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:7227px; line-height:15px; white-space:nowrap">\r
-\83\8d\81[\83J\83\8b\95Ï\90\94\82Ì\91å\95\8e\9a\8f¬\95\8e\9a</DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:7249px; width:136px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_19" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:7256px; line-height:13px; white-space:nowrap">\r
-Dim&nbsp; a, i, long_name</DIV>\r
-<DIV id="text193_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:54px; margin-top:7282px; line-height:15px; white-space:nowrap">\r
-\8f¬\95\8e\9a\82Æ\83A\83\93\83_\81[\83X\83R\83A\82¾\82¯\8eg\82¦\82Ü\82·\81B<BR/>\r
-\92\86\8aÔ\93I\82È\82à\82Ì\82È\82Ì\82Å\81A\82È\82é\82×\82­\92Z\82­\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text193_21" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:7328px; line-height:15px; white-space:nowrap">\r
-\8aÖ\90\94\96¼\82Æ\88ø\90\94\82Ì\91å\95\8e\9a\8f¬\95\8e\9a</DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:7350px; width:178px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_22" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:7357px; line-height:13px; white-space:nowrap">\r
-Sub&nbsp; Func( ParamA, ParamB )</DIV>\r
-<DIV id="text193_23" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:54px; margin-top:7383px; line-height:15px; white-space:nowrap">\r
-\8aÖ\90\94\96¼\82à\88ø\90\94\82à\81A\92P\8cê\82Ì\8aJ\8en\82Í\91å\95\8e\9a\81A\82Q\95\8e\9a\96Ú\88È\8d~\82Í\8f¬\95\8e\9a\82É\82µ\82Ü\82·\81B<BR/>\r
-\88ø\90\94\82à\81A\8aÖ\90\94\96¼\82Æ\93¯\97l\82É\88Ó\96¡\82ð\96¾\8am\82É\82·\82é\82±\82Æ\82ª\8fd\97v\82Å\82·\81B</DIV>\r
-<DIV id="text193_24" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:6808px; line-height:15px; white-space:nowrap">\r
-\83^\83u</DIV>\r
-<DIV id="text193_25" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:51px; margin-top:6832px; line-height:15px; white-space:nowrap">\r
-\83^\83u\95\8e\9a\82Í\8eg\82í\82È\82¢\81B<BR/>\r
-\83G\83f\83B\83^\82É\82æ\82Á\82Ä\83^\83u\95\9d\82ª\88Ù\82È\82é\82Æ\83\8c\83C\83A\83E\83g\82ª\82¸\82ê\82Ä\82µ\82Ü\82¢\82Ü\82·\81B</DIV>\r
-<DIV id="text193_26" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#000000; margin-left:32px; margin-top:6700px; line-height:13px; white-space:nowrap">\r
-\83R\81[\83f\83B\83\93\83O\83\8b\81[\83\8b\82Í\81A\95K\90{\82É\82·\82é\82Æ\82ë\82­\82È\82±\82Æ\82Í\82 \82è\82Ü\82¹\82ñ\81\95K\90{\82É\82µ\82Ä\82µ\82Ü\82¤\82Æ\81A\83\8b\81[\83\8b\82ð\8dì\82Á\82½<BR/>\r
-\90l\82Ì\8bZ\8fp\83\8c\83x\83\8b\81i\8d\82\82¢\92á\82¢\82É\8aÖ\82í\82ç\82¸\81j\82É\88ø\82Á\92£\82ç\82ê\82é\82±\82Æ\82É\82È\82è\82Ü\82·\81\82½\82Æ\82¦\82Î\81AMS Office \82Ì <BR/>\r
-Visual Basic Editor \82Ì\8e©\93®\90®\8c`\82ð\8eg\82¤\82Æ\81A\88È\89º\82Ì\83\8b\81[\83\8b\82Å\96\84\82ß\82±\82Ü\82ê\82é\8fî\95ñ\82ð\8e¸\82¢\81A\83\\81[\83X\83R\81[\83h\82©\82ç<BR/>\r
-\95K\97v\82È\8fî\95ñ\82ð\93¾\82ç\82ê\82È\82­\82È\82Á\82Ä\82µ\82Ü\82¢\82Ü\82·\81\8bt\82É\81A\88È\89º\82Ì\83\8b\81[\83\8b\82à\8fó\8bµ\82É\82æ\82Á\82Ä\82Í\81i\82 \82é\95W\8f\80\82É\8f\80\8b\92<BR/>\r
-\82µ\82È\82¢\82Æ\82¨\8bq\82ª\8eó\82¯\93ü\82ê\82È\82¢\82È\82Ç\90­\8e¡\93I\82È\97\9d\97R\82È\82Ç\82Å\82Í\81j\8e©\93®\90®\8c`\83c\81[\83\8b\82È\82Ç\82ð\92Ê\82µ\82Ä\81A\83\8b\81[\83\8b\82©\82ç<BR/>\r
-\8aO\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text193_27" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:7625px; line-height:15px; white-space:nowrap">\r
-<A name="out_ResultDic">\r
-\8f\88\97\9d\93à\97e\82Ì\95ñ\8d\90 \81iout_ResultDic\81j</A></DIV>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:7648px; width:220px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_28" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:7655px; line-height:13px; white-space:nowrap">\r
-Sub&nbsp; Func( ParamA, out_ResultDic )</DIV>\r
-<DIV id="text193_29" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:58px; margin-top:7684px; line-height:15px; white-space:nowrap">\r
-\82¢\82­\82Â\8f\88\97\9d\82µ\82½\82È\82Ç\81A\8f\88\97\9d\93à\97e\82Ì\8fî\95ñ\82Í\81Aout_ResultDic \82Æ\82¢\82¤\96¼\91O\82Ì\8e«\8f\91\8c^\88ø\90\94\82Å\95Ô\82·\81B<BR/>\r
-\8fî\95ñ\82ª\95s\97v\82Ì\82Æ\82«\82Í\81A\8cÄ\82Ñ\8fo\82·\91¤\82Å out_ResultDic = Empty \82ð\8ew\92è\82µ\82Ü\82·\81B</DIV>\r
-<v:rect style="position:absolute; margin-left:73px; margin-top:7755px; width:376px; height:40px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text193_30" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:81px; margin-top:7761px; line-height:15px; white-space:nowrap">\r
-&nbsp; Set out_ResultDic = CreateObject( "Scripting.Dictionary" )<BR/>\r
-&nbsp; out_ResultDic.Item( "OutputPath" ) = "file.txt"</DIV>\r
-<DIV id="text193_31" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:58px; margin-top:7731px; line-height:15px; white-space:nowrap">\r
-\95ñ\8d\90\82ð\8ds\82¤\8aÖ\90\94\82É\8bL\8fq\82·\82é\83R\81[\83h\82Ì\97á\81F</DIV>\r
+<A id="svgcats_vml_p182" class="to_tree" style="margin-top:4875px;" onClick="selectTreeElem( '182' );">\81©</A>\r
+<A href="#svgcats_vml_p183" class="to_next_page" style="margin-top:4875px;">\81¥</A>\r
+<A href="#svgcats_vml_p181" class="to_prev_page" style="margin-top:4875px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:4886px; width:614px; height:1055px;" fillcolor="white"/>\r
+<DIV id="text182_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:16px; margin-top:4903px; line-height:15px; white-space:nowrap">\r
+<A name="new_objs">\r
+new_ClassA_Array : \83I\83u\83W\83F\83N\83g\82Ì\94z\97ñ\82ð\90\90¬\82·\82é</A></DIV>\r
+<DIV id="text182_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:26px; margin-top:5100px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\97á\81F</DIV>\r
+<v:rect style="position:absolute; margin-left:35px; margin-top:5118px; width:334px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text182_3" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:5125px; line-height:13px; white-space:nowrap">\r
+Dim&nbsp; objs : new_ClassA_Array&nbsp; objs, 3&nbsp; '// [out] objs</DIV>\r
+<DIV id="text182_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:26px; margin-top:5185px; line-height:15px; white-space:nowrap">\r
+\92è\8b`\97á\81F</DIV>\r
+<v:rect style="position:absolute; margin-left:35px; margin-top:5203px; width:466px; height:55px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text182_5" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:5209px; line-height:15px; white-space:nowrap">\r
+Sub&nbsp; new_ClassA_Array( out_Objs, N )<BR/>\r
+&nbsp; Dim i:ReDim out_Objs(n-1):For i=0 To N-1:Set out_Objs(i)=new ClassA :Next<BR/>\r
+End Sub</DIV>\r
+<DIV id="text182_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:421px; margin-top:5225px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text182_7" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:97px; margin-top:5210px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text182_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:5151px; line-height:15px; white-space:nowrap">\r
+obj(0)\81`obj(2) \82É\81AClassA \82Ì\83I\83u\83W\83F\83N\83g\82ð 3\82Â\90\90¬\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text182_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:344px; margin-top:4905px; line-height:12px; white-space:nowrap">\r
+<A href="#vbsool">\r
+[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
+<DIV id="text182_10" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:139px; margin-top:5125px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text182_11" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:73px; margin-top:5125px; line-height:13px; white-space:nowrap">\r
+objs</DIV>\r
+<DIV id="text182_12" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:223px; margin-top:5125px; line-height:13px; white-space:nowrap">\r
+objs</DIV>\r
+<DIV id="text182_13" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:259px; margin-top:5125px; line-height:13px; white-space:nowrap">\r
+3</DIV>\r
+<DIV id="text182_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:73px; margin-top:5538px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_07.html#array_func">\r
+\81¨ Array \8aÖ\90\94</A></DIV>\r
+<DIV id="text182_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:16px; margin-top:5068px; line-height:15px; white-space:nowrap">\r
+<A name="new_ClassA_array_int">\r
+\91æ2\88ø\90\94\82ª\90\94\92l\82Ì\8fê\8d\87</A></DIV>\r
+<DIV id="text182_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:16px; margin-top:5298px; line-height:15px; white-space:nowrap">\r
+<A name="new_ClassA_array_arr">\r
+\91æ2\88ø\90\94\82ª\94z\97ñ\82Ì\8fê\8d\87</A></DIV>\r
+<DIV id="text182_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:43px; margin-top:4978px; line-height:15px; white-space:nowrap">\r
+<A href="#new_ClassA_array_int">\r
+\81¨ \91æ2\88ø\90\94\82ª\90\94\92l\82Ì\8fê\8d\87</A></DIV>\r
+<DIV id="text182_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:43px; margin-top:4997px; line-height:15px; white-space:nowrap">\r
+<A href="#new_ClassA_array_arr">\r
+\81¨ \91æ2\88ø\90\94\82ª\94z\97ñ\82Ì\8fê\8d\87</A></DIV>\r
+<v:rect style="position:absolute; margin-left:35px; margin-top:4935px; width:352px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text182_19" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:4942px; line-height:13px; white-space:nowrap">\r
+Sub&nbsp; new_ClassA_Array( out_Objs as array, N as variant )</DIV>\r
+<DIV id="text182_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:260px; margin-top:4978px; line-height:15px; white-space:nowrap">\r
+\95¡\90\94\82Ì\83I\83u\83W\83F\83N\83g\82Ì\90\90¬</DIV>\r
+<DIV id="text182_21" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:260px; margin-top:4997px; line-height:15px; white-space:nowrap">\r
+\95¡\90\94\82Ì\83I\83u\83W\83F\83N\83g\82Ì\90\90¬\82Æ\81AArray \82ð\8eg\82Á\82½\92l\82Ì\8f\89\8aú\89»</DIV>\r
+<DIV id="text182_22" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:223px; margin-top:5359px; line-height:13px; white-space:nowrap">\r
+objs</DIV>\r
+<DIV id="text182_23" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:73px; margin-top:5359px; line-height:13px; white-space:nowrap">\r
+objs</DIV>\r
+<DIV id="text182_24" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:139px; margin-top:5359px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text182_25" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:5385px; line-height:15px; white-space:nowrap">\r
+ClassA \82Ì\83I\83u\83W\83F\83N\83g\82ð \82P\82Â\90\90¬\82µ\81A"ABC", 1 \82ð\8eg\82Á\82Ä\92l\82ð\90Ý\92è\82µ\82Ü\82·\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:35px; margin-top:5352px; width:430px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text182_26" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:5359px; line-height:13px; white-space:nowrap">\r
+Dim&nbsp; objs : new_ClassA_Array&nbsp; objs, Array( "ABC", 1 )&nbsp; '// [out] objs</DIV>\r
+<DIV id="text182_27" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:26px; margin-top:5334px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\97á\81F</DIV>\r
+<DIV id="text182_28" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:35px; margin-top:5538px; line-height:15px; white-space:nowrap">\r
+\8eQ\8dl</DIV>\r
+<DIV id="text182_29" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:5494px; line-height:15px; white-space:nowrap">\r
+ClassA \82Ì\83I\83u\83W\83F\83N\83g\82ð \82Q\82Â\90\90¬\82µ\81A\82P\82Â\96Ú\82Ì\83I\83u\83W\83F\83N\83g\82Í\81A"ABC", 1 \82ð\8eg\82Á\82Ä\92l\82ð\90Ý\92è\82µ\81A<BR/>\r
+\82Q\82Â\96Ú\82Ì\83I\83u\83W\83F\83N\83g\82Í\81A"DEF", 2 \82ð\8eg\82Á\82Ä\92l\82ð\90Ý\92è\82µ\82Ü\82·\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:35px; margin-top:5431px; width:280px; height:55px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text182_30" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:5437px; line-height:15px; white-space:nowrap">\r
+Dim&nbsp; objs : new_ClassA_Array&nbsp; objs, Array( _<BR/>\r
+&nbsp; Array( "ABC", 1 ),_<BR/>\r
+&nbsp; Array( "DEF", 2 ) )&nbsp; '// [out] objs</DIV>\r
+<DIV id="text182_31" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:26px; margin-top:5414px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\97á\81F</DIV>\r
+<DIV id="text182_32" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:16px; margin-top:5586px; line-height:15px; white-space:nowrap">\r
+<A name="new_ClassA_array_str">\r
+\91æ2\88ø\90\94\82ª\95\8e\9a\97ñ\82© IXMLDOMElement \82Ì\8fê\8d\87</A></DIV>\r
+<DIV id="text182_33" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:260px; margin-top:5016px; line-height:15px; white-space:nowrap">\r
+\95¡\90\94\82Ì\83I\83u\83W\83F\83N\83g\82Ì\90\90¬\82Æ\81AXML \82ð\8eg\82Á\82½\92l\82Ì\8f\89\8aú\89»</DIV>\r
+<DIV id="text182_34" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:43px; margin-top:5016px; line-height:15px; white-space:nowrap">\r
+<A href="#new_ClassA_array_str">\r
+\81¨ \91æ2\88ø\90\94\82ª\95\8e\9a\97ñ\82©XML\82Ì\8fê\8d\87</A></DIV>\r
+<DIV id="text182_35" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:26px; margin-top:5663px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\97á\81F</DIV>\r
+<DIV id="text182_36" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:5730px; line-height:15px; white-space:nowrap">\r
+ClassA \82Ì\83I\83u\83W\83F\83N\83g\82ð \82P\82Â\90\90¬\82µ\81A"A", "1" \82ð\8eg\82Á\82Ä\92l\82ð\90Ý\92è\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text182_37" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:73px; margin-top:5688px; line-height:13px; white-space:nowrap">\r
+objs</DIV>\r
+<v:rect style="position:absolute; margin-left:35px; margin-top:5681px; width:508px; height:40px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text182_38" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:5687px; line-height:15px; white-space:nowrap">\r
+&nbsp; Dim&nbsp; objs : new_ClassA_Array&nbsp; objs, "&lt;ClassA name='A' num='1'/&gt;"&nbsp; '// [out] objs<BR/>\r
+&nbsp; Set&nbsp; out_Obj = objs(0)</DIV>\r
+<DIV id="text182_39" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:26px; margin-top:5616px; line-height:15px; white-space:nowrap">\r
+\95\8e\9a\97ñ\82Í XML \82Æ\82µ\82Ü\82·\81\83\8b\81[\83g\83^\83O\82Í\8fÈ\97ª\82Å\82«\82é\82æ\82¤\82É\82µ\82Ü\82·\81B<BR/>\r
+IXMLDOMElement \82Ì\8fê\8d\87\82Í\81A\8eq\83m\81[\83h\82ª\8e©\95ª\82Ì\83N\83\89\83X\82È\82ç\90\90¬\82µ\82Ü\82·\81\95¡\90\94\82Ì\8fê\8d\87\82à\82 \82è\81B</DIV>\r
+<DIV id="text182_40" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:75px; margin-top:5893px; line-height:15px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_44.html#LoadXML">\r
+\81¨ LoadXML (vbslib)</A></DIV>\r
+<v:rect style="position:absolute; margin-left:35px; margin-top:5788px; width:304px; height:55px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text182_41" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:43px; margin-top:5794px; line-height:15px; white-space:nowrap">\r
+Dim&nbsp; objs : new_ClassA_Array&nbsp; objs, _<BR/>\r
+&nbsp; "&lt;ClassA name='ABC' num='1'/&gt;" +_<BR/>\r
+&nbsp; "&lt;ClassA name='DEF' num='2'/&gt;"&nbsp; '// [out] objs</DIV>\r
+<DIV id="text182_42" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:5851px; line-height:15px; white-space:nowrap">\r
+ClassA \82Ì\83I\83u\83W\83F\83N\83g\82ð \82Q\82Â\90\90¬\82µ\81A\82P\82Â\96Ú\82Ì\83I\83u\83W\83F\83N\83g\82Í\81A"ABC", "1" \82ð\8eg\82Á\82Ä\92l\82ð\90Ý\92è\82µ\81A<BR/>\r
+\82Q\82Â\96Ú\82Ì\83I\83u\83W\83F\83N\83g\82Í\81A"DEF", "2" \82ð\8eg\82Á\82Ä\92l\82ð\90Ý\92è\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text182_43" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:26px; margin-top:5769px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\97á\81F</DIV>\r
+<DIV id="text182_44" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:35px; margin-top:5893px; line-height:15px; white-space:nowrap">\r
+\8eQ\8dl</DIV>\r
 \r
-<v:line from="0,6616" to="594,6616"/>\r
-<v:line from="594,6616" to="594,7827"/>\r
-<v:line from="594,7827" to="0,7827"/>\r
-<v:line from="0,7827" to="0,6616"/>\r
+<v:line from="0,4886" to="614,4886"/>\r
+<v:line from="614,4886" to="614,5941"/>\r
+<v:line from="614,5941" to="0,5941"/>\r
+<v:line from="0,5941" to="0,4886"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 194 --> \r
+<!-- page 183 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p194" class="to_tree" style="margin-top:7832px;" onClick="selectTreeElem( '194' );">\81©</A>\r
-<A href="#svgcats_vml_p195" class="to_next_page" style="margin-top:7832px;">\81¥</A>\r
-<A href="#svgcats_vml_p193" class="to_prev_page" style="margin-top:7832px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:7843px; width:492px; height:348px;" fillcolor="white"/>\r
-<DIV id="text194_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:7860px; line-height:15px; white-space:nowrap">\r
-<A name="automation">\r
-\83I\83u\83W\83F\83N\83g\81A\83A\83v\83\8a\91\80\8dì</A></DIV>\r
-<DIV id="text194_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:67px; margin-top:8092px; line-height:15px; white-space:nowrap">\r
-<A href="http://www.atmarkit.co.jp/fwin2k/tutor/cformwsh01/cformwsh01_02.html" target="_blank">\r
-\81¨ WSH\82ð\8en\82ß\82æ\82¤ \81\81\97IT (Web)</A></DIV>\r
-<DIV id="text194_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:30px; margin-top:7897px; line-height:15px; white-space:nowrap">\r
-ActiveX COM\83I\83u\83W\83F\83N\83g\82ð\92Ê\82\82Ä\83V\83F\83\8b\82â\83A\83v\83\8a\83P\81[\83V\83\87\83\93\82ð\91\80\8dì\82Å\82«\82Ü\82·\81B</DIV>\r
-<DIV id="text194_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:53px; margin-top:8031px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_13.html#Shell_Application">\r
-\81¨ Shell.Application</A></DIV>\r
-<DIV id="text194_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:53px; margin-top:7968px; line-height:15px; white-space:nowrap">\r
-<A href="#CreateObject">\r
-\81¨ CreateObject</A></DIV>\r
-<DIV id="text194_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:184px; margin-top:7968px; line-height:15px; white-space:nowrap">\r
-COM \83I\83u\83W\83F\83N\83g\82Ì\83C\83\93\83X\83^\83\93\83X\82ð\95Ô\82µ\82Ü\82·</DIV>\r
-<DIV id="text194_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:184px; margin-top:8031px; line-height:15px; white-space:nowrap">\r
-\83G\83N\83X\83v\83\8d\81[\83\89\82Ì\91\80\8dì</DIV>\r
-<DIV id="text194_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:53px; margin-top:7933px; line-height:15px; white-space:nowrap">\r
-<A href="#excel">\r
-\81¨ \83G\83N\83Z\83\8b\82Æ\82Ì\98A\8cg</A></DIV>\r
-<DIV id="text194_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:53px; margin-top:7989px; line-height:15px; white-space:nowrap">\r
-<A href="#com_const">\r
-\81¨ \92è\90\94\81A\97ñ\8b\93\91Ì\82ð\8eg\82¦\82é\82æ\82¤\82É\82·\82é(COM \83I\83u\83W\83F\83N\83g)</A></DIV>\r
-<DIV id="text194_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:53px; margin-top:8010px; line-height:15px; white-space:nowrap">\r
-<A href="#com_method">\r
-\81¨ \83\81\83\\83b\83h\82Ì\88ê\97\97\82ð\92²\82×\82é</A></DIV>\r
-<DIV id="text194_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:67px; margin-top:8121px; line-height:15px; white-space:nowrap">\r
-\81¨ VBA</DIV>\r
-<DIV id="text194_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:23px; margin-top:8121px; line-height:15px; white-space:nowrap">\r
+<A id="svgcats_vml_p183" class="to_tree" style="margin-top:5946px;" onClick="selectTreeElem( '183' );">\81©</A>\r
+<A href="#svgcats_vml_p184" class="to_next_page" style="margin-top:5946px;">\81¥</A>\r
+<A href="#svgcats_vml_p182" class="to_prev_page" style="margin-top:5946px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:5957px; width:588px; height:925px;" fillcolor="white"/>\r
+<DIV id="text183_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:5974px; line-height:15px; white-space:nowrap">\r
+<A name="vbsool_inf">\r
+ClassI : \83C\83\93\83^\81[\83t\83F\83C\83X (vbsool)</A></DIV>\r
+<v:rect style="position:absolute; margin-left:46px; margin-top:6389px; width:262px; height:70px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text183_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:6395px; line-height:15px; white-space:nowrap">\r
+Class&nbsp; ClassI&nbsp; '// defined_as_interface<BR/>\r
+&nbsp; Public Sub&nbsp; MethodA( Param1 ) : End Sub<BR/>\r
+&nbsp; Public Sub&nbsp; MethodB() : End Sub<BR/>\r
+End Class</DIV>\r
+<DIV id="text183_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:6009px; line-height:15px; white-space:nowrap">\r
+\82P\82Â\82Ì\83I\83u\83W\83F\83N\83g\82É\95¡\90\94\82Ì\83C\83\93\83^\81[\83t\83F\83C\83X\82ð\8eæ\93¾\82Å\82«\81A\91½\91Ô\82·\82é\8bL\8fq\96@\82Å\82·\81B<BR/>\r
+\91½\91Ô\81i\83|\83\8a\83\82\83A\83t\83B\83Y\83\80\81j\82Æ\82Í\81A\93¯\82\96¼\91O\82Ì\8aÖ\90\94\82â\83v\83\8d\83p\83e\83B\82ð\8cÄ\82Ñ\8fo\82µ\82Ä\82à\81A\83C\83\93\83X\83^\83\93\83X\82É<BR/>\r
+\82æ\82Á\82Ä\81A\8cÄ\82ñ\82¾\90æ\82Ì\8f\88\97\9d\93à\97e\82ª\88Ù\82È\82é\82±\82Æ\82Å\82·\81B<BR/>\r
+VBScript \82Ì\95Ï\90\94\82Í variant \8c^\82Å\81A\83C\83\93\83^\81[\83t\83F\83C\83X\82ð\92è\8b`\82µ\82È\82­\82Ä\82à\91½\91Ô\82·\82é\82±\82Æ\82ª\82Å\82«\82Ü\82·\82ª\81A<BR/>\r
+\83v\83\8d\83p\83e\83B\82â\83\81\83\\83b\83h\82Ì\83Z\83b\83g\82ð\96¾\8e¦\82µ\82Ä\82¢\82½\95û\82ª\81A\83A\83g\83\80\81E\83N\83\89\83X\82ð\8dì\90¬\82µ\82â\82·\82­\82È\82è\82Ü\82·\81B</DIV>\r
+<DIV id="text183_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:60px; margin-top:6097px; line-height:15px; white-space:nowrap">\r
+\81¨ \83|\83\8a\83\82\83A\83t\83B\83Y\83\80\81i\91½\91Ô\90«\81j</DIV>\r
+<DIV id="text183_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:6181px; line-height:15px; white-space:nowrap">\r
+\83f\81[\83^\8d\\91¢</DIV>\r
+<v:rect style="position:absolute; margin-left:33px; margin-top:6205px; width:124px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text183_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:41px; margin-top:6212px; line-height:13px; white-space:nowrap">\r
+Dim&nbsp; obj as ClassI</DIV>\r
+<DIV id="text183_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:41px; margin-top:6237px; line-height:15px; white-space:nowrap">\r
+\83C\83\93\83^\81[\83t\83F\83C\83X\82ð<BR/>\r
+\8eQ\8fÆ\82·\82é\95Ï\90\94</DIV>\r
+<v:line style="position:absolute;" from="158,6217" to="230,6217" strokecolor="#000000" strokeweight="1pt">\r
+    <v:stroke dashstyle="dash"/>\r
+</v:line>\r
+<v:line style="position:absolute;" from="230,6217" to="219,6213" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="230,6217" to="219,6221" strokecolor="#000000" strokeweight="1pt"/>\r
+<A href="#vbsool_ClassI">\r
+<v:rect style="position:absolute; margin-left:232px; margin-top:6191px; width:54px; height:18px;" fillcolor="#FFFFFF" strokecolor="#C0C0C0" strokeweight="1pt">\r
+<v:fill opacity="0.00"/>\r
+</v:rect>\r
+</A>\r
+<DIV id="text183_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:242px; margin-top:6193px; line-height:15px; white-space:nowrap">\r
+<A href="#vbsool_ClassI">\r
+ClassI</A></DIV>\r
+<v:line style="position:absolute;" from="339,6217" to="243,6217" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:oval style="position:absolute; margin-left:240px; margin-top:6214px; width:5px; height:5px;" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text183_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:227px; margin-top:6227px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\82Ì<BR/>\r
+\83C\83\93\83^\81[\83t\83F\83C\83X</DIV>\r
+<DIV id="text183_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:351px; margin-top:6234px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81i\83A\83g\83\80\81j</DIV>\r
+<A href="#vbsool_ClassA">\r
+<v:rect style="position:absolute; margin-left:328px; margin-top:6204px; width:55px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+</A>\r
+<DIV id="text183_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:336px; margin-top:6210px; line-height:15px; white-space:nowrap">\r
+<A href="#vbsool_ClassA">\r
+ClassA</A></DIV>\r
+<DIV id="text183_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:6298px; line-height:15px; white-space:nowrap">\r
+<A name="vbsool_ClassI">\r
+ClassI</A></DIV>\r
+<DIV id="text183_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:6326px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\82Ì\83C\83\93\83^\81[\83t\83F\83C\83X\81B<BR/>\r
+\89½\82à\82µ\82È\82¢\83T\83\93\83v\83\8b\81E\83N\83\89\83X\82ð\8bL\8fq\82·\82é\82±\82Æ\82Å\81A\83C\83\93\83^\81[\83t\83F\83C\83X\82ð\96¾\8e¦\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text183_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:6492px; line-height:15px; white-space:nowrap">\r
+<A name="vbsool_ClassA">\r
+ClassA</A></DIV>\r
+<DIV id="text183_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:39px; margin-top:6520px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\82Ì\83N\83\89\83X\81B\83A\83g\83\80\81E\83N\83\89\83X\81B<BR/>\r
+ClassI \82Ì\92è\8b`\82ð\83R\83s\81[\82µ\82Ä\92è\8b`\82µ\82Ü\82·\81\83C\83\93\83^\81[\83t\83F\83C\83X\82Æ\93¯\82\83\81\83\\83b\83h\96¼\82ª\82 \82è\82Ü\82·\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:46px; margin-top:6586px; width:364px; height:70px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text183_18" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:6592px; line-height:15px; white-space:nowrap">\r
+Class&nbsp; ClassA&nbsp; '// has_interface_of ClassI<BR/>\r
+&nbsp; Public Sub&nbsp; MethodA( Param1 ) : echo "MethodA" : End Sub<BR/>\r
+&nbsp; Public Sub&nbsp; MethodB() : echo "MethodB" : End Sub<BR/>\r
+End Class</DIV>\r
+<DIV id="text183_19" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:96px; margin-top:6593px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text183_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:248px; margin-top:5976px; line-height:12px; white-space:nowrap">\r
+<A href="#vbsool">\r
+[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
+<DIV id="text183_21" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:92px; margin-top:6300px; line-height:13px; white-space:nowrap">\r
+<A name="defined_as_interface">\r
+defined_as_interface</A></DIV>\r
+<DIV id="text183_22" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#408080; margin-left:88px; margin-top:6493px; line-height:13px; white-space:nowrap">\r
+<A name="has_interface_of">\r
+has_interface_of</A></DIV>\r
+<DIV id="text183_23" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:270px; margin-top:6593px; line-height:13px; white-space:nowrap">\r
+ClassI</DIV>\r
+<DIV id="text183_24" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:35px; margin-top:6369px; line-height:15px; white-space:nowrap">\r
+\92è\8b`\83T\83\93\83v\83\8b\81F</DIV>\r
+<DIV id="text183_25" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:39px; margin-top:6565px; line-height:15px; white-space:nowrap">\r
+\92è\8b`\83T\83\93\83v\83\8b\81F</DIV>\r
+<DIV id="text183_26" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:26px; margin-top:6684px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\83T\83\93\83v\83\8b</DIV>\r
+<v:rect style="position:absolute; margin-left:48px; margin-top:6735px; width:304px; height:115px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text183_27" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:56px; margin-top:6741px; line-height:15px; white-space:nowrap">\r
+Dim&nbsp; a : Set a = new ClassA<BR/>\r
+Dim&nbsp; b : Set b = new ClassB<BR/>\r
+<BR/>\r
+FuncUsingClassI&nbsp; a<BR/>\r
+FuncUsingClassI&nbsp; b<BR/>\r
+<BR/>\r
+Sub FuncUsingClassI( i ) : i.MethodA() : End Sub</DIV>\r
+<DIV id="text183_28" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:34px; margin-top:6714px; line-height:15px; white-space:nowrap">\r
+ClassI \82ð\8f\88\97\9d\82·\82é\8aÖ\90\94\82Ö\81AClassA \82Æ ClassB \82Ì\83C\83\93\83X\83^\83\93\83X\82ð\93n\82·</DIV>\r
+<DIV id="text183_29" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:22px; margin-top:6119px; line-height:15px; white-space:nowrap">\r
 \8aÖ\98A</DIV>\r
-<DIV id="text194_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:23px; margin-top:8092px; line-height:15px; white-space:nowrap">\r
+<DIV id="text183_30" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:22px; margin-top:6097px; line-height:15px; white-space:nowrap">\r
 \8eQ\8dl</DIV>\r
-<DIV id="text194_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:67px; margin-top:8143px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_09.html#class">\r
-\81¨ \83N\83\89\83X (VBScript)</A></DIV>\r
-<DIV id="text194_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:53px; margin-top:8052px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_10.html#Class_Terminate">\r
-\81¨ \83I\83u\83W\83F\83N\83g\82Ì\8dí\8f\9c</A></DIV>\r
+<DIV id="text183_31" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:60px; margin-top:6119px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_14.html#vbsool_inf2">\r
+\81¨ \95¡\90\94\82Ì\83I\83u\83W\83F\83N\83g\82ª\89\9e\93\9a\82·\82é\83C\83\93\83^\81[\83t\83F\83C\83X</A></DIV>\r
 \r
-<v:line from="0,7843" to="492,7843"/>\r
-<v:line from="492,7843" to="492,8191"/>\r
-<v:line from="492,8191" to="0,8191"/>\r
-<v:line from="0,8191" to="0,7843"/>\r
+<v:line from="0,5957" to="588,5957"/>\r
+<v:line from="588,5957" to="588,6882"/>\r
+<v:line from="588,6882" to="0,6882"/>\r
+<v:line from="0,6882" to="0,5957"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 195 --> \r
+<!-- page 184 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p195" class="to_tree" style="margin-top:8196px;" onClick="selectTreeElem( '195' );">\81©</A>\r
-<A href="#svgcats_vml_p196" class="to_next_page" style="margin-top:8196px;">\81¥</A>\r
-<A href="#svgcats_vml_p194" class="to_prev_page" style="margin-top:8196px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:8207px; width:506px; height:522px;" fillcolor="white"/>\r
-<DIV id="text195_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:8224px; line-height:15px; white-space:nowrap">\r
-<A name="excel">\r
-\83G\83N\83Z\83\8b\82Æ\82Ì\98A\8cg (WSH)</A></DIV>\r
-<v:rect style="position:absolute; margin-left:43px; margin-top:8354px; width:334px; height:85px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text195_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:51px; margin-top:8360px; line-height:15px; white-space:nowrap">\r
-Dim excel<BR/>\r
-Set excel = WScript.CreateObject("Excel.Application")<BR/>\r
-excel.Visible = True<BR/>\r
-excel.SheetsInNewWorkbook = 1<BR/>\r
-excel.WorkBooks.Add()</DIV>\r
-<DIV id="text195_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:8322px; line-height:15px; white-space:nowrap">\r
-\90V\8bK\83\8f\81[\83N\83V\81[\83g\82ð\8dì\90¬\82·\82é</DIV>\r
-<v:rect style="position:absolute; margin-left:43px; margin-top:8489px; width:382px; height:130px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text195_4" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:51px; margin-top:8495px; line-height:15px; white-space:nowrap">\r
-Dim excel<BR/>\r
-Set excel = WScript.CreateObject("Excel.Application")<BR/>\r
-excel.Visible = True<BR/>\r
-<BR/>\r
-Dim fs, path<BR/>\r
-Set fs = WScript.CreateObject( "Scripting.FileSystemObject" )<BR/>\r
-path = fs.GetAbsolutePathName( "sample.xls" )<BR/>\r
-excel.WorkBooks.Open( path ) ' \83t\83\8b\81E\83p\83X\82Å\82 \82é\82±\82Æ</DIV>\r
-<DIV id="text195_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:8464px; line-height:15px; white-space:nowrap">\r
-\83G\83N\83Z\83\8b\82Ì\83t\83@\83C\83\8b\82ð\8aJ\82­</DIV>\r
-<DIV id="text195_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:51px; margin-top:8264px; line-height:15px; white-space:nowrap">\r
+<A id="svgcats_vml_p184" class="to_tree" style="margin-top:6887px;" onClick="selectTreeElem( '184' );">\81©</A>\r
+<A href="#svgcats_vml_p185" class="to_next_page" style="margin-top:6887px;">\81¥</A>\r
+<A href="#svgcats_vml_p183" class="to_prev_page" style="margin-top:6887px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:6898px; width:581px; height:1226px;" fillcolor="white"/>\r
+<DIV id="text184_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:6915px; line-height:15px; white-space:nowrap">\r
+<A name="get_ClassA">\r
+get_Object : \90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\8eæ\93¾\81A\89\89\8eZ\8aí\97v\8b\81</A></DIV>\r
+<v:rect style="position:absolute; margin-left:29px; margin-top:6946px; width:220px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:37px; margin-top:6953px; line-height:13px; white-space:nowrap">\r
+Function&nbsp; get_ObjectA() as ObjectA</DIV>\r
+<DIV id="text184_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:19px; margin-top:8032px; line-height:15px; white-space:nowrap">\r
 \8aÖ\98A</DIV>\r
-<DIV id="text195_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:62px; margin-top:8680px; line-height:15px; white-space:nowrap">\r
-<A href="http://www012.upp.so-net.ne.jp/scotchegg/VBScript/ExcelVBA.htm" target="_blank">\r
-\81¨ Deep Decryption - VBScript Tips - WSH \82©\82çExcel \82ð\91\80\8dì\82·\82é (Web)</A></DIV>\r
-<DIV id="text195_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:25px; margin-top:8680px; line-height:15px; white-space:nowrap">\r
+<DIV id="text184_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:384px; margin-top:6918px; line-height:12px; white-space:nowrap">\r
+<A href="#vbsool">\r
+[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
+<DIV id="text184_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:36px; margin-top:7064px; line-height:15px; white-space:nowrap">\r
+\82ð\8eæ\93¾\82µ\82Ü\82·\81\82à\82µ\81A\91\8dÝ\82µ\82È\82¯\82ê\82Î\81A<BR/>\r
+<BR/>\r
+\8aÖ\90\94\82É\82·\82é\82±\82Æ\82Å\81A\83I\83u\83W\83F\83N\83g\81i\83C\83\93\83X\83^\83\93\83X\81j\82ð\83J\83v\83Z\83\8b\89»\82µ\82Ü\82·\81B<BR/>\r
+\89½\89ñ\8cÄ\82Ñ\8fo\82µ\82Ä\82à\81A\93¯\82\83I\83u\83W\83F\83N\83g\82ð\95Ô\82µ\82Ü\82·\81\83\86\81[\83U\81[\82Í\81A\90\90¬\81A\8dí\8f\9c\82ð\88Ó\8e¯\82µ\82Ü\82¹\82ñ\81B<BR/>\r
+\83I\83u\83W\83F\83N\83g\82Ì\92è\8b`\82Í\81Aget_ClassA \8aÖ\90\94\82É\83X\83e\83b\83v\83C\83\93\82·\82é\82Æ\95ª\82©\82è\82Ü\82·\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:29px; margin-top:6978px; width:304px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:37px; margin-top:6985px; line-height:13px; white-space:nowrap">\r
+Function&nbsp; get_Object( Name as string ) as Object</DIV>\r
+<v:rect style="position:absolute; margin-left:54px; margin-top:7463px; width:334px; height:115px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_7" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:62px; margin-top:7469px; line-height:15px; white-space:nowrap">\r
+Dim&nbsp; g_ClassA<BR/>\r
+<BR/>\r
+Function&nbsp; &nbsp; get_ClassA()&nbsp; '// has_interface_of ClassI<BR/>\r
+&nbsp; &nbsp; If IsEmpty( g_ClassA ) Then _<BR/>\r
+&nbsp; &nbsp; &nbsp; &nbsp; Set g_ClassA = new ClassA : ErrCheck<BR/>\r
+&nbsp; &nbsp; Set get_ClassA =&nbsp; &nbsp;g_ClassA<BR/>\r
+End Function</DIV>\r
+<v:rect style="position:absolute; margin-left:54px; margin-top:7917px; width:358px; height:70px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_8" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:62px; margin-top:7923px; line-height:15px; white-space:nowrap">\r
+Function&nbsp; get_Object( Name )<BR/>\r
+&nbsp; Dim&nbsp; get_func : Set&nbsp; get_func = GetRef( "get_" + Name )<BR/>\r
+&nbsp; Set&nbsp; get_Object = get_func()<BR/>\r
+End Function</DIV>\r
+<v:rect style="position:absolute; margin-left:54px; margin-top:7618px; width:352px; height:235px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_9" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:62px; margin-top:7624px; line-height:15px; white-space:nowrap">\r
+Dim&nbsp; g_ClassA<BR/>\r
+<BR/>\r
+Function&nbsp; &nbsp; get_ClassA()&nbsp; '// has_interface_of ClassI<BR/>\r
+&nbsp; If IsEmpty( g_ClassA ) Then<BR/>\r
+&nbsp; &nbsp; Set g_ClassA = new ClassC : With g_ClassA : ErrCheck<BR/>\r
+&nbsp; &nbsp; &nbsp; .Name = "ClassA"<BR/>\r
+&nbsp; &nbsp; &nbsp; .MethodA = GetRef( "ClassA_methodA" )<BR/>\r
+&nbsp; &nbsp; End With<BR/>\r
+&nbsp; End If<BR/>\r
+&nbsp; Set get_ClassA = g_ClassA<BR/>\r
+End Function<BR/>\r
+<BR/>\r
+Sub&nbsp; ClassA_methodA( Me_, ParamA )<BR/>\r
+&nbsp; :<BR/>\r
+End Sub</DIV>\r
+<DIV id="text184_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:37px; margin-top:7442px; line-height:15px; white-space:nowrap">\r
+\92è\8b`\83T\83\93\83v\83\8b\81F ClassA \83I\83u\83W\83F\83N\83g\81iClassA \83N\83\89\83X\82Ì\83C\83\93\83X\83^\83\93\83X\81j\82ð\95Ô\82·</DIV>\r
+<DIV id="text184_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:37px; margin-top:7597px; line-height:15px; white-space:nowrap">\r
+\92è\8b`\83T\83\93\83v\83\8b\81F ClassC \82Ì\83C\83\93\83X\83^\83\93\83X\82Ì\83v\83\8d\83p\83e\83B\82ð\90Ý\92è\82µ\82Ä\95Ô\82·</DIV>\r
+<DIV id="text184_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:37px; margin-top:7896px; line-height:15px; white-space:nowrap">\r
+\92è\8b`\83T\83\93\83v\83\8b\81\83N\83\89\83X\96¼\82ð\95\8e\9a\97ñ\82Å\8ew\92è\82µ\82Ä\83C\83\93\83X\83^\83\93\83X\82ð\95Ô\82·</DIV>\r
+<v:line style="position:absolute;" from="189,7185" to="213,7185" strokecolor="#000000" strokeweight="1pt">\r
+    <v:stroke dashstyle="dash"/>\r
+</v:line>\r
+<v:line style="position:absolute;" from="213,7185" to="202,7181" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:line style="position:absolute;" from="213,7185" to="202,7189" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:rect style="position:absolute; margin-left:52px; margin-top:7173px; width:136px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_14" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:60px; margin-top:7180px; line-height:13px; white-space:nowrap">\r
+Dim&nbsp; g_obj as ClassI</DIV>\r
+<DIV id="text184_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:60px; margin-top:7205px; line-height:15px; white-space:nowrap">\r
+\83C\83\93\83^\81[\83t\83F\83C\83X\82ð<BR/>\r
+\8eQ\8fÆ\82·\82é\95Ï\90\94</DIV>\r
+<v:line style="position:absolute;" from="220,7185" to="327,7185" strokecolor="#000000" strokeweight="1pt">\r
+    <v:stroke dashstyle="dash"/>\r
+</v:line>\r
+<v:shape style="position:absolute; margin-left:220px; margin-top:7180px; width:10px; height:10px"\r
+ fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"\r
+ path="m 0,500 l 1000,1000, 1000,0 x e"/>\r
+<A href="#vbsool_ClassI">\r
+<v:rect style="position:absolute; margin-left:333px; margin-top:7160px; width:54px; height:18px;" fillcolor="#FFFFFF" strokecolor="#C0C0C0" strokeweight="1pt">\r
+<v:fill opacity="0.00"/>\r
+</v:rect>\r
+</A>\r
+<DIV id="text184_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:343px; margin-top:7162px; line-height:15px; white-space:nowrap">\r
+<A href="#vbsool_ClassI">\r
+ClassI</A></DIV>\r
+<v:line style="position:absolute;" from="440,7186" to="344,7186" strokecolor="#000000" strokeweight="1pt"/>\r
+<v:oval style="position:absolute; margin-left:341px; margin-top:7183px; width:5px; height:5px;" fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:304px; margin-top:7196px; line-height:15px; white-space:nowrap">\r
+<A href="#vbsool_inf">\r
+\83I\83u\83W\83F\83N\83g\82Ì<BR/>\r
+\83C\83\93\83^\81[\83t\83F\83C\83X</A></DIV>\r
+<DIV id="text184_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:404px; margin-top:7203px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81i\83A\83g\83\80\81j</DIV>\r
+<A href="#vbsool_ClassA">\r
+<v:rect style="position:absolute; margin-left:429px; margin-top:7173px; width:55px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+</A>\r
+<DIV id="text184_21" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:437px; margin-top:7179px; line-height:15px; white-space:nowrap">\r
+<A href="#vbsool_ClassA">\r
+ClassA</A></DIV>\r
+<DIV id="text184_22" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#FF0000; margin-left:233px; margin-top:7159px; line-height:15px; white-space:nowrap">\r
+get_ClassA \8aÖ\90\94</DIV>\r
+<DIV id="text184_23" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:69px; margin-top:7860px; line-height:15px; white-space:nowrap">\r
+\83N\83\89\83X\82ð\90V\82½\82É\8dì\90¬\82µ\82È\82­\82Ä\82à\81AGetRef \82Å\83\81\83\\83b\83h\82É\91½\91Ô\90«\82ð\8e\9d\82½\82¹\82é\82±\82Æ\82ª\82Å\82«\82Ü\82·\81B</DIV>\r
+<DIV id="text184_24" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:344px; margin-top:7500px; line-height:13px; white-space:nowrap">\r
+ClassI</DIV>\r
+<DIV id="text184_25" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:158px; margin-top:7500px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text184_26" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:170px; margin-top:7515px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text184_27" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:224px; margin-top:7530px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text184_28" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:212px; margin-top:7545px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text184_29" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:146px; margin-top:7530px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text184_30" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:134px; margin-top:7545px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text184_31" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:104px; margin-top:7470px; line-height:13px; white-space:nowrap">\r
+ClassA</DIV>\r
+<DIV id="text184_32" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:64px; margin-top:8054px; line-height:15px; white-space:nowrap">\r
+\81¨ ClassA_get \83}\83N\83\8d (clib)</DIV>\r
+<DIV id="text184_33" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:64px; margin-top:8032px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_14.html#DefineInfo">\r
+\81¨ DefineInfo \83v\83\8d\83p\83e\83B</A></DIV>\r
+<DIV id="text184_34" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:37px; margin-top:7268px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\83T\83\93\83v\83\8b\81F </DIV>\r
+<v:rect style="position:absolute; margin-left:54px; margin-top:7291px; width:250px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_35" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:62px; margin-top:7298px; line-height:13px; white-space:nowrap">\r
+Dim&nbsp; sample : Set sample = get_Sample()</DIV>\r
+<DIV id="text184_36" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:92px; margin-top:7298px; line-height:13px; white-space:nowrap">\r
+sample</DIV>\r
+<DIV id="text184_37" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:170px; margin-top:7298px; line-height:13px; white-space:nowrap">\r
+sample</DIV>\r
+<DIV id="text184_38" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:248px; margin-top:7298px; line-height:13px; white-space:nowrap">\r
+Sample</DIV>\r
+<DIV id="text184_39" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:91px; margin-top:7996px; line-height:15px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_21.html#get_Object">\r
+\81¨ get_Object (vbslib)</A></DIV>\r
+<DIV id="text184_40" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:56px; margin-top:7996px; line-height:15px; white-space:nowrap">\r
 \8eQ\8dl</DIV>\r
-<DIV id="text195_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:94px; margin-top:8264px; line-height:15px; white-space:nowrap">\r
-\81¨ Excel.Application \83I\83u\83W\83F\83N\83g</DIV>\r
-<DIV id="text195_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:94px; margin-top:8284px; line-height:15px; white-space:nowrap">\r
-\81¨ Excel \82Ì vbslib</DIV>\r
-<DIV id="text195_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:45px; margin-top:8627px; line-height:15px; white-space:nowrap">\r
-Excel \82Ì vbslib \82ð\8eg\82¤\82Æ\81A\82à\82Á\82Æ\8aÈ\92P\82É\8bL\8fq\82Å\82«\82Ü\82·\81B</DIV>\r
+<DIV id="text184_41" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:37px; margin-top:7048px; line-height:15px; white-space:nowrap">\r
+<A href="#static_object_vbs">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b</A></DIV>\r
+<DIV id="text184_42" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:156px; margin-top:7048px; line-height:15px; white-space:nowrap">\r
+\82È\82Ç\82É\93ü\82Á\82Ä\82¢\82é\90Ã\93I\83I\83u\83W\83F\83N\83\81i\82Ü\82½\82Í\89\89\8eZ\8aí\93I\82È\83I\83u\83W\83F\83N\83g\81j</DIV>\r
+<v:rect style="position:absolute; margin-left:54px; margin-top:7323px; width:310px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_43" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:62px; margin-top:7330px; line-height:13px; white-space:nowrap">\r
+Dim&nbsp; sample : Set sample = get_Object( "Sample" )</DIV>\r
+<DIV id="text184_44" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:170px; margin-top:7330px; line-height:13px; white-space:nowrap">\r
+sample</DIV>\r
+<DIV id="text184_45" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:92px; margin-top:7330px; line-height:13px; white-space:nowrap">\r
+sample</DIV>\r
+<DIV id="text184_46" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:302px; margin-top:7330px; line-height:13px; white-space:nowrap">\r
+Sample</DIV>\r
+<DIV id="text184_47" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:355px; margin-top:6983px; line-height:15px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_21.html#get_Object">\r
+\81¨ get_Object (vbslib)</A></DIV>\r
+<DIV id="text184_48" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:362px; margin-top:7064px; line-height:15px; white-space:nowrap">\r
+\82ð\95Ô\82·\82©\81A\83G\83\89\81[\82É\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text184_49" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:250px; margin-top:7064px; line-height:15px; white-space:nowrap">\r
+<A href="vbs_memo_06.html#Empty">\r
+Nothing \83I\83u\83W\83F\83N\83g</A></DIV>\r
+<DIV id="text184_50" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:64px; margin-top:8076px; line-height:15px; white-space:nowrap">\r
+\81¨ SuperClass_setCreatingSubClass (COOL)</DIV>\r
+<v:rect style="position:absolute; margin-left:29px; margin-top:7011px; width:478px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_51" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:37px; margin-top:7018px; line-height:13px; white-space:nowrap">\r
+Function&nbsp; get_ObjectA_withOption( Option_ as ObjectA_OptionClass ) as ObjectA</DIV>\r
+<v:rect style="position:absolute; margin-left:54px; margin-top:7355px; width:346px; height:55px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text184_52" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:62px; margin-top:7361px; line-height:15px; white-space:nowrap">\r
+Set opt = new SampleOptionClass<BR/>\r
+opt.SettingA = 1<BR/>\r
+Dim&nbsp; sample : Set sample = get_Sample_withOption( opt )</DIV>\r
 \r
-<v:line from="0,8207" to="506,8207"/>\r
-<v:line from="506,8207" to="506,8729"/>\r
-<v:line from="506,8729" to="0,8729"/>\r
-<v:line from="0,8729" to="0,8207"/>\r
+<v:line from="0,6898" to="581,6898"/>\r
+<v:line from="581,6898" to="581,8124"/>\r
+<v:line from="581,8124" to="0,8124"/>\r
+<v:line from="0,8124" to="0,6898"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 196 --> \r
+<!-- page 185 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p196" class="to_tree" style="margin-top:8734px;" onClick="selectTreeElem( '196' );">\81©</A>\r
-<A href="#svgcats_vml_p197" class="to_next_page" style="margin-top:8734px;">\81¥</A>\r
-<A href="#svgcats_vml_p195" class="to_prev_page" style="margin-top:8734px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:8745px; width:509px; height:471px;" fillcolor="white"/>\r
-<v:image src="196/image01.png"\r
-   style="position:absolute; margin-left:63px; margin-top:9049px; width:157px; height:102px;"/>\r
-<v:rect style="position:absolute; margin-left:46px; margin-top:8927px; width:304px; height:40px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text196_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:54px; margin-top:8933px; line-height:15px; white-space:nowrap">\r
-Dim&nbsp; sh_ap<BR/>\r
-Set&nbsp; sh_ap = CreateObject( "Shell.Application" )</DIV>\r
-<DIV id="text196_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:8758px; line-height:15px; white-space:nowrap">\r
-<A name="CreateObject">\r
-CreateObject</A></DIV>\r
-<DIV id="text196_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:42px; margin-top:8855px; line-height:15px; white-space:nowrap">\r
+<A id="svgcats_vml_p185" class="to_tree" style="margin-top:8129px;" onClick="selectTreeElem( '185' );">\81©</A>\r
+<A href="#svgcats_vml_p186" class="to_next_page" style="margin-top:8129px;">\81¥</A>\r
+<A href="#svgcats_vml_p184" class="to_prev_page" style="margin-top:8129px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:8140px; width:475px; height:323px;" fillcolor="white"/>\r
+<DIV id="text185_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:8157px; line-height:15px; white-space:nowrap">\r
+<A name="get_ClassA_file">\r
+get_ClassA_FromFile( Path ) : \83t\83@\83C\83\8b\8c`\8e®\82Ì\83I\83u\83W\83F\83N\83g\82ð\91\80\8dì\82·\82é</A></DIV>\r
+<v:rect style="position:absolute; margin-left:40px; margin-top:8406px; width:280px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text185_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:48px; margin-top:8413px; line-height:13px; white-space:nowrap">\r
+get_Sample_FromFile( "Sample1.xml" ).Method1</DIV>\r
+<DIV id="text185_3" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:72px; margin-top:8413px; line-height:13px; white-space:nowrap">\r
+Sample&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Sample1.xml&nbsp; &nbsp; Method1</DIV>\r
+<v:rect style="position:absolute; margin-left:25px; margin-top:8187px; width:358px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text185_4" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:33px; margin-top:8194px; line-height:13px; white-space:nowrap">\r
+Function&nbsp; get_ClassA_FromFile( Path as string ) as object</DIV>\r
+<DIV id="text185_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:33px; margin-top:8224px; line-height:15px; white-space:nowrap">\r
+\88ê\94Ê\93I\82È\83t\83@\83C\83\8b\82ð\91\80\8dì\82·\82é\83I\83u\83W\83F\83N\83g\82ð\90\90¬\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text185_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:33px; margin-top:8250px; line-height:15px; white-space:nowrap">\r
 \81y\88ø\90\94\81z</DIV>\r
-<DIV id="text196_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:106px; margin-top:8855px; line-height:15px; white-space:nowrap">\r
-ClassName</DIV>\r
-<DIV id="text196_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:106px; margin-top:8874px; line-height:15px; white-space:nowrap">\r
+<DIV id="text185_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:97px; margin-top:8250px; line-height:15px; white-space:nowrap">\r
+Path</DIV>\r
+<DIV id="text185_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:97px; margin-top:8269px; line-height:15px; white-space:nowrap">\r
 \95Ô\82è\92l</DIV>\r
-<DIV id="text196_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:190px; margin-top:8855px; line-height:15px; white-space:nowrap">\r
-\83N\83\89\83X\96¼</DIV>\r
-<DIV id="text196_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:190px; margin-top:8874px; line-height:15px; white-space:nowrap">\r
-ClassName \82É\8ew\92è\82µ\82½\83N\83\89\83X\82Ì\83C\83\93\83X\83^\83\93\83X</DIV>\r
-<v:rect style="position:absolute; margin-left:34px; margin-top:8790px; width:352px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text196_9" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:42px; margin-top:8797px; line-height:13px; white-space:nowrap">\r
-Function&nbsp; CreateObject( ClassName as string ) as variant</DIV>\r
-<DIV id="text196_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:34px; margin-top:8904px; line-height:15px; white-space:nowrap">\r
+<DIV id="text185_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:154px; margin-top:8250px; line-height:15px; white-space:nowrap">\r
+\83t\83@\83C\83\8b\82Ì\83p\83X</DIV>\r
+<DIV id="text185_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:154px; margin-top:8269px; line-height:15px; white-space:nowrap">\r
+\83t\83@\83C\83\8b\82ð\83I\83u\83W\83F\83N\83g\82Æ\82µ\82Ä\91\80\8dì\82Å\82«\82é\83I\83u\83W\83F\83N\83g</DIV>\r
+<DIV id="text185_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:33px; margin-top:8386px; line-height:15px; white-space:nowrap">\r
 \83T\83\93\83v\83\8b\81F</DIV>\r
-<DIV id="text196_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:42px; margin-top:8827px; line-height:15px; white-space:nowrap">\r
-COM \83I\83u\83W\83F\83N\83g\82Ì\83C\83\93\83X\83^\83\93\83X\82ð\95Ô\82µ\82Ü\82·\81B</DIV>\r
-<DIV id="text196_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:34px; margin-top:8994px; line-height:15px; white-space:nowrap">\r
-\83\8c\83W\83X\83g\83\8a\82Ì\81AHKEY_CLASSES_ROOT \92¼\89º\82Ì\83L\81[\82Å\81ACLSID \83L\81[\82ð\8e\9d\82Á\82Ä\82¢\82é<BR/>\r
-\82à\82Ì\82Ì\88ê\95\94\82ð\8ew\92è\82Å\82«\82Ü\82·\81B</DIV>\r
-<DIV id="text196_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:24px; margin-top:9168px; line-height:15px; white-space:nowrap">\r
-\8aÖ\98A</DIV>\r
-<DIV id="text196_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:70px; margin-top:9168px; line-height:15px; white-space:nowrap">\r
-\81¨ ActiveXObject (JScript)</DIV>\r
+<DIV id="text185_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:259px; margin-top:8311px; line-height:15px; white-space:nowrap">\r
+\88ê\94Ê\93I\82È\83t\83@\83C\83\8b(*.xml)</DIV>\r
+<DIV id="text185_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:47px; margin-top:8311px; line-height:15px; white-space:nowrap">\r
+\88ê\94Ê\83X\83N\83\8a\83v\83g\83t\83@\83C\83\8b(*.vbs)</DIV>\r
+<v:rect style="position:absolute; margin-left:84px; margin-top:8335px; width:80px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text185_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:92px; margin-top:8341px; line-height:15px; white-space:nowrap">\r
+ScriptA.vbs</DIV>\r
+<v:rect style="position:absolute; margin-left:281px; margin-top:8334px; width:78px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text185_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:289px; margin-top:8340px; line-height:15px; white-space:nowrap">\r
+Sample.xml</DIV>\r
+<v:line style="position:absolute;" from="270,8348" to="169,8348" strokecolor="#000000" strokeweight="1pt">\r
+    <v:stroke dashstyle="dash"/>\r
+</v:line>\r
+<v:shape style="position:absolute; margin-left:169px; margin-top:8343px; width:10px; height:10px"\r
+ fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"\r
+ path="m 0,500 l 1000,1000, 1000,0 x e"/>\r
+<DIV id="text185_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:211px; margin-top:8332px; line-height:15px; white-space:nowrap">\r
+\8eæ\93¾</DIV>\r
 \r
-<v:line from="0,8745" to="509,8745"/>\r
-<v:line from="509,8745" to="509,9216"/>\r
-<v:line from="509,9216" to="0,9216"/>\r
-<v:line from="0,9216" to="0,8745"/>\r
+<v:line from="0,8140" to="475,8140"/>\r
+<v:line from="475,8140" to="475,8463"/>\r
+<v:line from="475,8463" to="0,8463"/>\r
+<v:line from="0,8463" to="0,8140"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 197 --> \r
+<!-- page 186 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p197" class="to_tree" style="margin-top:9221px;" onClick="selectTreeElem( '197' );">\81©</A>\r
-<A href="#svgcats_vml_p198" class="to_next_page" style="margin-top:9221px;">\81¥</A>\r
-<A href="#svgcats_vml_p196" class="to_prev_page" style="margin-top:9221px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:9232px; width:589px; height:588px;" fillcolor="white"/>\r
-<DIV id="text197_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:9249px; line-height:15px; white-space:nowrap">\r
-<A name="com_const">\r
-\92è\90\94\81A\97ñ\8b\93\91Ì\82ð\8eg\82¦\82é\82æ\82¤\82É\82·\82é(COM \83I\83u\83W\83F\83N\83g)</A></DIV>\r
-<v:rect style="position:absolute; margin-left:28px; margin-top:9406px; width:268px; height:137px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text197_2" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:36px; margin-top:9411px; line-height:16px; white-space:nowrap">\r
-&lt;job&gt;<BR/>\r
-&lt;reference object="VisualStudio.DTE.8.0"/&gt;<BR/>\r
-&lt;script language="VBScript"&gt;<BR/>\r
-Option Explicit<BR/>\r
-<BR/>\r
-WScript.Echo&nbsp; vsBuildStateDone<BR/>\r
-&lt;/script&gt;<BR/>\r
-&lt;/job&gt;</DIV>\r
-<DIV id="text197_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:9385px; line-height:15px; white-space:nowrap">\r
-sample.wsf</DIV>\r
-<DIV id="text197_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:9279px; line-height:15px; white-space:nowrap">\r
-wsf \83t\83@\83C\83\8b\82Ì reference \83^\83O\82ð\8eg\82¤\82Æ\81ACOM \83I\83u\83W\83F\83N\83g\82Å\92è\8b`\82³\82ê\82Ä\82¢\82é\92è\90\94\82ð\8eg\82¤\82±\82Æ\82ª<BR/>\r
-\82Å\82«\82é\82æ\82¤\82É\82È\82è\82Ü\82·\81B</DIV>\r
-<DIV id="text197_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:24px; margin-top:9324px; line-height:15px; white-space:nowrap">\r
-CreateObject("VisualStudio.DTE.8.0") \82Å Visual Studio \82Ì COM \83I\83u\83W\83F\83N\83g\82ð\8eæ\93¾\82Å\82«\82é\82Æ\82«\81A<BR/>\r
-\8e\9f\82Ì\82æ\82¤\82É\8bL\8fq\82·\82é\82Æ\81AvsBuildStateDone \92è\90\94\81ivsBuildState \97ñ\8b\93\91Ì\82Ì\97v\91f\81j\82È\82Ç\82ª\8eg\82¦\82é\82æ\82¤<BR/>\r
-\82É\82È\82è\82Ü\82·\81B</DIV>\r
-<DIV id="text197_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:74px; margin-top:9717px; line-height:15px; white-space:nowrap">\r
-\81¨ \83N\83\89\83X\82Ì\92è\90\94</DIV>\r
-<DIV id="text197_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:30px; margin-top:9717px; line-height:15px; white-space:nowrap">\r
-\8aÖ\98A</DIV>\r
-<DIV id="text197_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:74px; margin-top:9734px; line-height:15px; white-space:nowrap">\r
-<A href="vbs_memo_03.html#inc_wsf">\r
-\81¨ WSF\83t\83@\83C\83\8b</A></DIV>\r
-<DIV id="text197_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:30px; margin-top:9567px; line-height:15px; white-space:nowrap">\r
-\82½\82¾\82µ\81Awsf \82Í\81Avbs_inc \82Ù\82Ç\8f_\93î\82É\8dÄ\97\98\97p\82Å\82«\82È\82¢\82Ì\82Å\92\8d\88Ó\82µ\82Ä\82­\82¾\82³\82¢\81B</DIV>\r
-<DIV id="text197_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:30px; margin-top:9607px; line-height:15px; white-space:nowrap">\r
-reference \82Ì\92l</DIV>\r
-<v:rect style="position:absolute; margin-left:164px; margin-top:9634px; width:268px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text197_11" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:172px; margin-top:9641px; line-height:13px; white-space:nowrap">\r
-&lt;reference object="VisualStudio.DTE.8.0"/&gt;</DIV>\r
-<DIV id="text197_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:43px; margin-top:9639px; line-height:15px; white-space:nowrap">\r
-Visual Studio 2005</DIV>\r
-<DIV id="text197_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:43px; margin-top:9671px; line-height:15px; white-space:nowrap">\r
-Excel</DIV>\r
-<DIV id="text197_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:74px; margin-top:9772px; line-height:15px; white-space:nowrap">\r
-<A href="http://www.atmarkit.co.jp/bbs/phpBB/viewtopic.php?topic=33262&forum=6&7" target="_blank">\r
-\81¨ VBScript\82ð\8eg\82Á\82ÄExcel\82ð\8dì\90¬\82·\82é\8e\9e\82ÉCalculation\83v\83\8d\83p\83e\83B\82ð\90Ý\92è\82Å\82«\82Ü\82¹\82ñ (Web)</A></DIV>\r
-<DIV id="text197_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:30px; margin-top:9772px; line-height:15px; white-space:nowrap">\r
-\8eQ\8fÆ</DIV>\r
-<v:rect style="position:absolute; margin-left:164px; margin-top:9666px; width:364px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
-<DIV id="text197_16" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:172px; margin-top:9673px; line-height:13px; white-space:nowrap">\r
-&lt;reference guid="{00020813-0000-0000-C000-000000000046}"/&gt;</DIV>\r
+<A id="svgcats_vml_p186" class="to_tree" style="margin-top:8468px;" onClick="selectTreeElem( '186' );">\81©</A>\r
+<A href="#svgcats_vml_p187" class="to_next_page" style="margin-top:8468px;">\81¥</A>\r
+<A href="#svgcats_vml_p185" class="to_prev_page" style="margin-top:8468px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:8479px; width:662px; height:424px;" fillcolor="white"/>\r
+<v:rect style="position:absolute; margin-left:45px; margin-top:8696px; width:478px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text186_1" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:53px; margin-top:8703px; line-height:13px; white-space:nowrap">\r
+Dim&nbsp; sample : Set sample = get_ObjectFromFile( "ObjectX_obj.vbs", "ObjectX" )</DIV>\r
+<DIV id="text186_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:259px; margin-top:8588px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b(*_obj.vbs)</DIV>\r
+<DIV id="text186_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:47px; margin-top:8588px; line-height:15px; white-space:nowrap">\r
+\88ê\94Ê\83X\83N\83\8a\83v\83g\83t\83@\83C\83\8b(*.vbs)</DIV>\r
+<v:rect style="position:absolute; margin-left:84px; margin-top:8612px; width:80px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text186_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:92px; margin-top:8618px; line-height:15px; white-space:nowrap">\r
+ScriptA.vbs</DIV>\r
+<v:rect style="position:absolute; margin-left:281px; margin-top:8611px; width:103px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text186_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:289px; margin-top:8617px; line-height:15px; white-space:nowrap">\r
+ObjectX_obj.vbs</DIV>\r
+<v:line style="position:absolute;" from="270,8625" to="169,8625" strokecolor="#000000" strokeweight="1pt">\r
+    <v:stroke dashstyle="dash"/>\r
+</v:line>\r
+<v:shape style="position:absolute; margin-left:169px; margin-top:8620px; width:10px; height:10px"\r
+ fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"\r
+ path="m 0,500 l 1000,1000, 1000,0 x e"/>\r
+<DIV id="text186_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:28px; margin-top:8536px; line-height:15px; white-space:nowrap">\r
+\91½\82­\82Ì\83v\83\8d\83O\83\89\83\80\82Í\81A\82 \82é\83f\81[\83^\83t\83@\83C\83\8b\82ð\93Ç\82Ý\8d\9e\82ñ\82Å\8f\88\97\9d\82µ\82Ü\82·\82ª\81AVBScript \82Å\82Í\81A\83f\81[\83^\83t\83@\83C\83\8b\82Ì<BR/>\r
+\91ã\82í\82è\82É\81A\83X\83N\83\8a\83v\83g\81E\83t\83@\83C\83\8b\82ð\8ew\92è\82µ\82Ä\81A\82»\82Ì\92\86\82Å\92è\8b`\82³\82ê\82Ä\82¢\82é\83I\83u\83W\83F\83N\83g\82ð\8eg\82¤\82±\82Æ\82à\82Å\82«\82Ü\82·\81B</DIV>\r
+<DIV id="text186_8" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:161px; margin-top:8703px; line-height:13px; white-space:nowrap">\r
+sample</DIV>\r
+<DIV id="text186_9" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:83px; margin-top:8703px; line-height:13px; white-space:nowrap">\r
+sample</DIV>\r
+<DIV id="text186_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:28px; margin-top:8673px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\83T\83\93\83v\83\8b\81\93Á\92è\82Ì\83I\83u\83W\83F\83N\83g\82ð\8eæ\93¾\82·\82é</DIV>\r
+<DIV id="text186_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:52px; margin-top:8732px; line-height:15px; white-space:nowrap">\r
+get_ObjectFromFile \8aÖ\90\94\82Í\81A\89º\8bL\82Ì\8eÀ\8ds\82É\91\8a\93\96\82µ\82Ü\82·\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:61px; margin-top:8754px; width:256px; height:40px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text186_12" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:69px; margin-top:8760px; line-height:15px; white-space:nowrap">\r
+&nbsp; include&nbsp; "ObjectX_obj.vbs"<BR/>\r
+&nbsp; Set get_ObjectFromFile = get_ObjectX()</DIV>\r
+<DIV id="text186_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:60px; margin-top:8819px; line-height:15px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_21.html#get_ObjectFromFile">\r
+\81¨ get_ObjectFromFile (vbslib)</A></DIV>\r
+<DIV id="text186_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:23px; margin-top:8819px; line-height:15px; white-space:nowrap">\r
+\8eQ\8dl</DIV>\r
+<DIV id="text186_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:22px; margin-top:8502px; line-height:15px; white-space:nowrap">\r
+<A name="static_object_vbs">\r
+get_ObjectFromFile : \83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\82©\82ç\83I\83u\83W\83F\83N\83g\82ð\8eæ\93¾\82·\82é</A></DIV>\r
+<DIV id="text186_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:211px; margin-top:8609px; line-height:15px; white-space:nowrap">\r
+\8eæ\93¾</DIV>\r
+<DIV id="text186_17" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:60px; margin-top:8837px; line-height:15px; white-space:nowrap">\r
+<A href="#get_ClassA">\r
+\81¨ get_Object : \90Ã\93I\83I\83u\83W\83F\83N\83g\81A\89\89\8eZ\8aí\97v\8b\81</A></DIV>\r
+<DIV id="text186_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:470px; margin-top:8505px; line-height:12px; white-space:nowrap">\r
+<A href="#vbsool">\r
+[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
+<DIV id="text186_19" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#0000FF; margin-left:231px; margin-top:8776px; line-height:13px; white-space:nowrap">\r
+<A href="#get_ClassA">\r
+get_ObjectX</A></DIV>\r
+<DIV id="text186_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:336px; margin-top:8760px; line-height:15px; white-space:nowrap">\r
+get_ObjectX \8aÖ\90\94\82Ì\92\86\82É<BR/>\r
+\83I\83u\83W\83F\83N\83g\82Ì\92è\8b`\82ª\82 \82è\82Ü\82·</DIV>\r
+<DIV id="text186_21" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#0000FF; margin-left:215px; margin-top:8703px; line-height:13px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_21.html#get_ObjectFromFile">\r
+get_ObjectFromFile</A></DIV>\r
 \r
-<v:line from="0,9232" to="589,9232"/>\r
-<v:line from="589,9232" to="589,9820"/>\r
-<v:line from="589,9820" to="0,9820"/>\r
-<v:line from="0,9820" to="0,9232"/>\r
+<v:line from="0,8479" to="662,8479"/>\r
+<v:line from="662,8479" to="662,8903"/>\r
+<v:line from="662,8903" to="0,8903"/>\r
+<v:line from="0,8903" to="0,8479"/>\r
 \r
 </PAGE>\r
  \r
-<!-- page 198 --> \r
+<!-- page 187 --> \r
 <PAGE>\r
-<A id="svgcats_vml_p198" class="to_tree" style="margin-top:9825px;" onClick="selectTreeElem( '198' );">\81©</A>\r
-<A href="vbs_memo_13.html#svgcats_vml_p199" class="to_next_page" style="margin-top:9825px;">\81¥</A>\r
-<A href="#svgcats_vml_p197" class="to_prev_page" style="margin-top:9825px;">\81£</A>\r
-<v:rect style="position:absolute; margin-left:0px; margin-top:9836px; width:594px; height:249px;" fillcolor="white"/>\r
-<v:image src="198/image01.png"\r
-   style="position:absolute; margin-left:33px; margin-top:9928px; width:529px; height:125px;"/>\r
-<DIV id="text198_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:9853px; line-height:15px; white-space:nowrap">\r
-<A name="com_method">\r
-\83\81\83\\83b\83h\82Ì\88ê\97\97\82ð\92²\82×\82é</A></DIV>\r
-<DIV id="text198_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:30px; margin-top:9896px; line-height:15px; white-space:nowrap">\r
-\83f\83o\83b\83K\82Å\81A\83I\83u\83W\83F\83N\83g\82ð\83E\83H\83b\83`\82µ\82Ä\81A[Method] \82ð\93W\8aJ\82·\82é\82Æ\81A\83\81\83\\83b\83h\82Ì\88ê\97\97\82ª\95ª\82©\82è\82Ü\82·\81B</DIV>\r
+<A id="svgcats_vml_p187" class="to_tree" style="margin-top:8908px;" onClick="selectTreeElem( '187' );">\81©</A>\r
+<A href="#svgcats_vml_p188" class="to_next_page" style="margin-top:8908px;">\81¥</A>\r
+<A href="#svgcats_vml_p186" class="to_prev_page" style="margin-top:8908px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:8919px; width:652px; height:595px;" fillcolor="white"/>\r
+<DIV id="text187_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:19px; margin-top:8942px; line-height:15px; white-space:nowrap">\r
+<A name="get_ObjectsFromFile">\r
+get_ObjectsFromFile : \83I\83u\83W\83F\83N\83g\81E\83t\83H\83\8b\83_\82©\82ç\83I\83u\83W\83F\83N\83g\82ð\8eæ\93¾\82·\82é</A></DIV>\r
+<DIV id="text187_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:28px; margin-top:9162px; line-height:15px; white-space:nowrap">\r
+\8eg\97p\83T\83\93\83v\83\8b\81\93Á\92è\82Ì\83C\83\93\83^\81[\83t\83F\83C\83X\82ð\8e\9d\82Á\82½\83I\83u\83W\83F\83N\83g\82Ì\88ê\97\97\82ð\8eæ\93¾\82·\82é</DIV>\r
+<DIV id="text187_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:72px; margin-top:9324px; line-height:15px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_22.html#get_ObjectsFromFile">\r
+\81¨ get_ObjectsFromFile (vbslib)</A></DIV>\r
+<DIV id="text187_4" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:31px; margin-top:9324px; line-height:15px; white-space:nowrap">\r
+\8eQ\8dl</DIV>\r
+<DIV id="text187_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:72px; margin-top:9342px; line-height:15px; white-space:nowrap">\r
+<A href="#get_StaticObjects">\r
+\81¨ get_StaticObjects : \90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\88ê\97\97</A></DIV>\r
+<v:rect style="position:absolute; margin-left:45px; margin-top:9188px; width:454px; height:40px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text187_6" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:53px; margin-top:9194px; line-height:15px; white-space:nowrap">\r
+Dim&nbsp; samples<BR/>\r
+get_ObjectsFromFile&nbsp; "Lib\*_obj.vbs", "ClassI", samples '// [out] samples</DIV>\r
+<DIV id="text187_7" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:83px; margin-top:9195px; line-height:13px; white-space:nowrap">\r
+samples</DIV>\r
+<DIV id="text187_8" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:341px; margin-top:9210px; line-height:13px; white-space:nowrap">\r
+samples</DIV>\r
+<DIV id="text187_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:31px; margin-top:9384px; line-height:15px; white-space:nowrap">\r
+\92è\8b`\83T\83\93\83v\83\8b</DIV>\r
+<DIV id="text187_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:56px; margin-top:9412px; line-height:15px; white-space:nowrap">\r
+<A href="#get_ClassA">\r
+\81¨ get_Object : \90Ã\93I\83I\83u\83W\83F\83N\83g\81A\89\89\8eZ\8aí\97v\8b\81 \82Ì\92è\8b`\83T\83\93\83v\83\8b</A></DIV>\r
+<DIV id="text187_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:56px; margin-top:9431px; line-height:15px; white-space:nowrap">\r
+<A href="#get_StaticObjects">\r
+\81¨ get_StaticObjects : \90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\88ê\97\97 \82Ì\92è\8b`\83T\83\93\83v\83\8b</A></DIV>\r
+<DIV id="text187_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:53px; margin-top:9240px; line-height:15px; white-space:nowrap">\r
+get_ObjectsFromFile \8aÖ\90\94\82Í\81A\93à\95\94\82Å "Lib\*_obj.vbs" \82É\83}\83b\83`\82µ\82½\83t\83@\83C\83\8b\82ð\83C\83\93\83N<BR/>\r
+\83\8b\81[\83h\82µ\82Ä\81A\82»\82ê\82¼\82ê\82Ì .vbs \83t\83@\83C\83\8b\82Å\92è\8b`\82³\82ê\82Ä\82¢\82é get_StaticObjects \8aÖ\90\94\82ð<BR/>\r
+\8cÄ\82Ñ\8fo\82µ\82Ü\82·\81B get_StaticObjects \8aÖ\90\94\82Í\81AClassI \83C\83\93\83^\81[\83t\83F\83C\83X\82ð\8e\9d\82Á\82½\83I\83u\83W\83F\83N\83g<BR/>\r
+\82ð\8eæ\93¾\82·\82é get_Object \8aÖ\90\94\82ð\8cÄ\82Ñ\8fo\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text187_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:402px; margin-top:9115px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b(*_obj.vbs)</DIV>\r
+<DIV id="text187_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:48px; margin-top:9050px; line-height:15px; white-space:nowrap">\r
+\88ê\94Ê\83X\83N\83\8a\83v\83g\83t\83@\83C\83\8b(*.vbs)</DIV>\r
+<v:rect style="position:absolute; margin-left:85px; margin-top:9074px; width:80px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text187_15" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:93px; margin-top:9080px; line-height:15px; white-space:nowrap">\r
+ScriptA.vbs</DIV>\r
+<v:rect style="position:absolute; margin-left:282px; margin-top:9109px; width:103px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text187_16" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:290px; margin-top:9115px; line-height:15px; white-space:nowrap">\r
+ObjectX_obj.vbs</DIV>\r
+<v:line style="position:absolute;" from="252,9087" to="170,9087" strokecolor="#000000" strokeweight="1pt">\r
+    <v:stroke dashstyle="dash"/>\r
+</v:line>\r
+<v:shape style="position:absolute; margin-left:170px; margin-top:9082px; width:10px; height:10px"\r
+ fillcolor="#FFFFFF" strokecolor="#000000" strokeweight="1pt"\r
+ path="m 0,500 l 1000,1000, 1000,0 x e"/>\r
+<DIV id="text187_18" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:28px; margin-top:8976px; line-height:15px; white-space:nowrap">\r
+\91½\82­\82Ì\83v\83\8d\83O\83\89\83\80\82Í\81A\82 \82é\83f\81[\83^\83t\83@\83C\83\8b\82ð\93Ç\82Ý\8d\9e\82ñ\82Å\8f\88\97\9d\82µ\82Ü\82·\82ª\81AVBScript \82Å\82Í\81A\83f\81[\83^\83t\83@\83C\83\8b<BR/>\r
+\82Ì\91ã\82í\82è\82É\81A\83X\83N\83\8a\83v\83g\81E\83t\83@\83C\83\8b\82ð\8ew\92è\82µ\82Ä\81A\82»\82Ì\92\86\82Å\92è\8b`\82³\82ê\82Ä\82¢\82é\83I\83u\83W\83F\83N\83g\82ð\8eg\82¤\82±\82Æ\82à\82Å\82«\82Ü\82·\81B</DIV>\r
+<DIV id="text187_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:201px; margin-top:9071px; line-height:15px; white-space:nowrap">\r
+\83\8d\81[\83h</DIV>\r
+<DIV id="text187_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:28px; margin-top:9019px; line-height:15px; white-space:nowrap">\r
+\83t\83H\83\8b\83_\82ð\8ew\92è\82µ\82Ä\81A\82·\82×\82Ä\82Ì\83I\83u\83W\83F\83N\83g\82ð\83\8a\83X\83g\83A\83b\83v\82·\82é\82±\82Æ\82ª\82Å\82«\82Ü\82·\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:261px; margin-top:9074px; width:103px; height:26px;" fillcolor="#F0F3FF" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text187_21" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:269px; margin-top:9080px; line-height:15px; white-space:nowrap">\r
+ObjectX_obj.vbs</DIV>\r
+<DIV id="text187_22" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:383px; margin-top:9080px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83H\83\8b\83_</DIV>\r
+<DIV id="text187_23" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:31px; margin-top:9466px; line-height:15px; white-space:nowrap">\r
+\83T\83\93\83v\83\8b\83t\83@\83C\83\8b</DIV>\r
+<DIV id="text187_24" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:149px; margin-top:9466px; line-height:15px; white-space:nowrap">\r
+\81¨ T_NameList \83t\83H\83\8b\83_</DIV>\r
+<DIV id="text187_25" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:312px; margin-top:9466px; line-height:15px; white-space:nowrap">\r
+\81¨ T_NameList_vbslib \83t\83H\83\8b\83_</DIV>\r
+<DIV id="text187_26" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:460px; margin-top:8945px; line-height:12px; white-space:nowrap">\r
+<A href="#vbsool">\r
+[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
+\r
+<v:line from="0,8919" to="652,8919"/>\r
+<v:line from="652,8919" to="652,9514"/>\r
+<v:line from="652,9514" to="0,9514"/>\r
+<v:line from="0,9514" to="0,8919"/>\r
+\r
+</PAGE>\r
\r
+<!-- page 188 --> \r
+<PAGE>\r
+<A id="svgcats_vml_p188" class="to_tree" style="margin-top:9519px;" onClick="selectTreeElem( '188' );">\81©</A>\r
+<A href="vbs_memo_13.html#svgcats_vml_p189" class="to_next_page" style="margin-top:9519px;">\81¥</A>\r
+<A href="#svgcats_vml_p187" class="to_prev_page" style="margin-top:9519px;">\81£</A>\r
+<v:rect style="position:absolute; margin-left:0px; margin-top:9530px; width:561px; height:856px;" fillcolor="white"/>\r
+<DIV id="text188_1" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#008000; font-weight: bold; margin-left:24px; margin-top:9547px; line-height:15px; white-space:nowrap">\r
+<A name="get_StaticObjects">\r
+get_StaticObjects : \90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\88ê\97\97</A></DIV>\r
+<DIV id="text188_2" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:36px; margin-top:10184px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\81i.vbs\83t\83@\83C\83\8b\81\82É\93ü\82Á\82Ä\82¢\82é\90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\88ê\97\97\82Í\81A<BR/>\r
+get_StaticObjects \82Æ\82¢\82¤\8aÖ\90\94\96¼\82Å\8eæ\93¾\82Å\82«\82é\82æ\82¤\95W\8f\80\89»\82µ\82Ü\82·\81B<BR/>\r
+out_Obj \82É\95Ô\82·\83I\83u\83W\83F\83N\83g\82Í\81AInterfaceName \82É\93ü\82Á\82½\96¼\91O\82Ì\83C\83\93\83^\81[\83t\83F\83C\83X\82ð<BR/>\r
+\8e\9d\82Á\82Ä\82¢\82é\82à\82Ì\81A\82Ü\82½\82Í\81A\83N\83\89\83X\82ª InterfaceName \82Ì\82à\82Ì\82Æ\82µ\82Ü\82·\81B<BR/>\r
+out_Obj \82ª Empty \82ð\95Ô\82·\82Æ\82«\82Í\81A\91Î\89\9e\82·\82é\83I\83u\83W\83F\83N\83g\82ª\91\8dÝ\82µ\82È\82¢\82±\82Æ\82ð\8e¦\82µ\82Ü\82·\81B<BR/>\r
+\91Î\89\9e\82·\82é\90Ã\93I\83I\83u\83W\83F\83N\83g\82ª\95¡\90\94\82 \82é\82Æ\82«\82Í\81Aout_Obj \82É\94z\97ñ\82ð\95Ô\82µ\82Ü\82·\81B<BR/>\r
+get_StaticObjects \82ª\8cÄ\82Î\82ê\82é\82Æ\82«\82Ì\83J\83\8c\83\93\83g\81E\83t\83H\83\8b\83_\82Í\81A\95s\92è\82Å\82·\81B</DIV>\r
+<DIV id="text188_3" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:8pt; color:#0000FF; margin-left:329px; margin-top:9550px; line-height:12px; white-space:nowrap">\r
+<A href="#vbsool">\r
+[ \90e: vbsool : \83I\83u\83W\83F\83N\83g\8bL\8fq\96@ ]</A></DIV>\r
+<v:rect style="position:absolute; margin-left:29px; margin-top:9579px; width:436px; height:25px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text188_4" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:37px; margin-top:9586px; line-height:13px; white-space:nowrap">\r
+Sub&nbsp; get_StaticObjects( InterfaceName as string, out_Objs as variant )</DIV>\r
+<DIV id="text188_5" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:196px; margin-top:9643px; line-height:15px; white-space:nowrap">\r
+\97v\8b\81\82·\82é\90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\83C\83\93\83^\81[\83t\83F\83C\83X\82Ì\96¼\91O</DIV>\r
+<DIV id="text188_6" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:97px; margin-top:9643px; line-height:15px; white-space:nowrap">\r
+InterfaceName</DIV>\r
+<DIV id="text188_7" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:33px; margin-top:9643px; line-height:15px; white-space:nowrap">\r
+\81y\88ø\90\94\81z</DIV>\r
+<DIV id="text188_8" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:33px; margin-top:9617px; line-height:15px; white-space:nowrap">\r
+\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\81i.vbs\83t\83@\83C\83\8b\81\82É\93ü\82Á\82Ä\82¢\82é\90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\88ê\97\97\82ð\8eæ\93¾\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text188_9" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:97px; margin-top:9662px; line-height:15px; white-space:nowrap">\r
+out_Obj</DIV>\r
+<DIV id="text188_10" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:196px; margin-top:9662px; line-height:15px; white-space:nowrap">\r
+\81i\8fo\97Í\81\90Ã\93I\83I\83u\83W\83F\83N\83g\81A\82Ü\82½\82Í\82»\82Ì\94z\97ñ</DIV>\r
+<DIV id="text188_11" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:188px; margin-top:9705px; line-height:15px; white-space:nowrap">\r
+<A href="#get_ObjectsFromFile">\r
+get_ObjectsFromFile</A></DIV>\r
+<DIV id="text188_12" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:36px; margin-top:9705px; line-height:15px; white-space:nowrap">\r
+get_StaticObjects \8aÖ\90\94\82Í\81A</DIV>\r
+<DIV id="text188_13" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:310px; margin-top:9705px; line-height:15px; white-space:nowrap">\r
+\8aÖ\90\94\82©\82ç\8cÄ\82Î\82ê\82Ü\82·\81B</DIV>\r
+<DIV id="text188_14" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:36px; margin-top:9986px; line-height:15px; white-space:nowrap">\r
+\8f\88\97\9d\83t\83\8d\81[\81F</DIV>\r
+<DIV id="text188_15" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:66px; margin-top:10009px; line-height:13px; white-space:nowrap">\r
+get_ObjectsFromFile</DIV>\r
+<DIV id="text188_16" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:105px; margin-top:10048px; line-height:13px; white-space:nowrap">\r
+include \81i\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\82Ì\82P\82Â\81j</DIV>\r
+<DIV id="text188_17" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:85px; margin-top:10029px; line-height:13px; white-space:nowrap">\r
+For \81i\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\82Ì\83\8b\81[\83v\81j</DIV>\r
+<DIV id="text188_18" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#FF0000; margin-left:105px; margin-top:10065px; line-height:13px; white-space:nowrap">\r
+get_StaticObjects</DIV>\r
+<DIV id="text188_19" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:36px; margin-top:10121px; line-height:15px; white-space:nowrap">\r
+get_StaticObjects\8aÖ\90\94\82Í\81A\82»\82ê\82¼\82ê\82Ì\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\82Å\92è\8b`\82µ\82Ü\82·\81B<BR/>\r
+\95¡\90\94\82Ì\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\82Å\92è\8b`\82µ\82Ä\82à\81Aget_ObjectsFromFile \82Í\81A\82»\82ê\82¼\82ê\82Ì<BR/>\r
+get_StaticObjects \8aÖ\90\94\82ð\8bæ\95Ê\82µ\82Ä\8cÄ\82Ñ\8fo\82µ\82Ü\82·\81B</DIV>\r
+<DIV id="text188_20" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:36px; margin-top:9740px; line-height:15px; white-space:nowrap">\r
+get_StaticObjects \8aÖ\90\94\82Í\81A</DIV>\r
+<DIV id="text188_21" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:191px; margin-top:9740px; line-height:15px; white-space:nowrap">\r
+<A href="#get_ClassA">\r
+\90Ã\93I\83I\83u\83W\83F\83N\83g</A></DIV>\r
+<DIV id="text188_22" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:284px; margin-top:9740px; line-height:15px; white-space:nowrap">\r
+\82ð\83\86\81[\83U\81[\82ª\8eg\82¦\82é\82æ\82¤\82É\82·\82é\82½\82ß\82É\81A</DIV>\r
+<DIV id="text188_23" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:36px; margin-top:9756px; line-height:15px; white-space:nowrap">\r
+\83\89\83C\83u\83\89\83\8a\82ª\8eÀ\91\95\82·\82é\8aÖ\90\94\82Ì\82P\82Â\82Å\82·\81\83\89\83C\83u\83\89\83\8a\82©\82ç\8c©\82ê\82Î\81Aget_StaticObjects<BR/>\r
+\8aÖ\90\94\82Í\81A\83I\83u\83W\83F\83N\83g\81E\83t\83@\83C\83\8b\82Ì\92\86\82Å\92è\8b`\82µ\82Ä\82¢\82é\90Ã\93I\83I\83u\83W\83F\83N\83g\82Ì\88ê\97\97\82ð\81A<BR/>\r
+\83R\81[\83\8b\8c³\82Ö\93n\82·\8f\88\97\9d\82ð\82µ\82Ü\82·\81B</DIV>\r
+<v:rect style="position:absolute; margin-left:69px; margin-top:9838px; width:394px; height:115px;" fillcolor="#E7E7E7" strokecolor="#000000" strokeweight="1pt"/>\r
+<DIV id="text188_24" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:77px; margin-top:9844px; line-height:15px; white-space:nowrap">\r
+Sub&nbsp; get_StaticObjects( InterfaceName, out_Obj )<BR/>\r
+&nbsp; If IsEmpty( InterfaceName ) or&nbsp; InterfaceName = "ClassI" Then<BR/>\r
+&nbsp; &nbsp; Set&nbsp; out_Obj = get_ClassA()<BR/>\r
+&nbsp; ElseIf InterfaceName = "ClassI2" Then<BR/>\r
+&nbsp; &nbsp; out_Obj = Array( get_ClassA(),&nbsp; get_ClassB() )<BR/>\r
+&nbsp; End If<BR/>\r
+End Sub</DIV>\r
+<DIV id="text188_25" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:51px; margin-top:9818px; line-height:15px; white-space:nowrap">\r
+\92è\8b`\83T\83\93\83v\83\8b\81F</DIV>\r
+<DIV id="text188_26" style="position:absolute; font-family: '\82l\82\83S\83V\83b\83N'; font-size:9pt; color:#000000; margin-left:127px; margin-top:10082px; line-height:13px; white-space:nowrap">\r
+get_Object</DIV>\r
+<DIV id="text188_27" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:284px; margin-top:10309px; line-height:15px; white-space:nowrap">\r
+<A href="..\vbslib.files\vbslib_22.html#get_ObjectsFromFile">\r
+\81¨ get_ObjectsFromFile (vbslib)</A></DIV>\r
+<DIV id="text188_28" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:32px; margin-top:10309px; line-height:15px; white-space:nowrap">\r
+\8eQ\8dl</DIV>\r
+<DIV id="text188_29" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#0000FF; margin-left:74px; margin-top:10309px; line-height:15px; white-space:nowrap">\r
+<A href="#get_ObjectsFromFile">\r
+\81¨ get_ObjectsFromFile \82Ì\90à\96¾</A></DIV>\r
+<DIV id="text188_30" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#408080; font-weight: bold; margin-left:32px; margin-top:10338px; line-height:15px; white-space:nowrap">\r
+\83T\83\93\83v\83\8b\83t\83@\83C\83\8b</DIV>\r
+<DIV id="text188_31" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:150px; margin-top:10338px; line-height:15px; white-space:nowrap">\r
+\81¨ T_NameList \83t\83H\83\8b\83_</DIV>\r
+<DIV id="text188_32" style="position:absolute; font-family: '\82l\82\82o\83S\83V\83b\83N'; font-size:10pt; color:#000000; margin-left:313px; margin-top:10338px; line-height:15px; white-space:nowrap">\r
+\81¨ T_NameList_vbslib \83t\83H\83\8b\83_</DIV>\r
 \r
-<v:line from="0,9836" to="594,9836"/>\r
-<v:line from="594,9836" to="594,10085"/>\r
-<v:line from="594,10085" to="0,10085"/>\r
-<v:line from="0,10085" to="0,9836"/>\r
+<v:line from="0,9530" to="561,9530"/>\r
+<v:line from="561,9530" to="561,10386"/>\r
+<v:line from="561,10386" to="0,10386"/>\r
+<v:line from="0,10386" to="0,9530"/>\r
 \r
-<DIV style="position:absolute; margin-left:0px; margin-top:10085px;">\r
-<A id="svgcats_vml_p198" class="to_tree" onClick="selectTreeElem( '198' );">\81©</A></DIV>\r
-<DIV style="position:absolute; margin-left:20px; margin-top:10085px;">\r
+<DIV style="position:absolute; margin-left:0px; margin-top:10386px;">\r
+<A id="svgcats_vml_p188" class="to_tree" onClick="selectTreeElem( '188' );">\81©</A></DIV>\r
+<DIV style="position:absolute; margin-left:20px; margin-top:10386px;">\r
 <A id="page_group_bottom" href="vbs_memo_13.html#page_group_top" style="text-decoration:none;">\81«</A></DIV>\r
 </PAGE>\r
  \r