home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _84f07dbe60ef6f690bb86a8a5bbbf9fe < prev    next >
Text File  |  2000-03-22  |  22KB  |  423 lines

  1. <HTML>
  2.  
  3. <HEAD>
  4. <TITLE>perlwin32faq12 - Using OLE with Perl</TITLE>
  5. <LINK rev="made" href="mailto:hmn@datagraf.dk">
  6. <META name="GENERATOR" charset="iso-8859-1" content="Microsoft FrontPage 4.0">
  7. <META name="ProgId" content="FrontPage.Editor.Document">
  8. <LINK rel="STYLESHEET" href="../../Active.css" type="text/css" media="screen">
  9. </HEAD>
  10.  
  11. <BODY bgcolor="#ffffff">
  12.  
  13. <TABLE width="100%">
  14.   <TR>
  15.     <TD class="block" valign="MIDDLE" width="100%" bgcolor="#cccccc"><STRONG>
  16.       <P class="block"> ActivePerl FAQ</P>
  17.       </STRONG></TD>
  18.   </TR>
  19. </TABLE>
  20. <UL>
  21.   <LI><A href="#NAME">NAME</A>
  22.   <LI><A href="#DESCRIPTION">DESCRIPTION</A>
  23.     <UL>
  24.       <LI><A href="#use_ole">Can I use OLE with Perl?</A>
  25.       <LI><A href="#changed_by_4xx">What has changed with OLE since build 3xx</A>
  26.       <LI><A href="#print_word">How do I print a Microsoft Word document?</A>
  27.       <LI><A href="#extract_cells">How do I extract a series of cells from Microsoft Excel?</A>
  28.       <LI><A href="#make_chart">How do I make a chart in Microsoft Excel?</A>
  29.       <LI><A href="#save_chart">How do I save a chart from Microsoft Excel as GIF/JPEG/PNG?</A>
  30.       <LI><A href="#run_macro">How do I run a macro in Microsoft Excel?</A>
  31.       <LI><A href="#set_name_cell">How do I set the name of a cell in Microsoft Excel?</A>
  32.       <LI><A href="#create_new_folder">How do I create a new folder in Outlook?</A>
  33.       <LI><A href="#use_ado">How do I use ADO?</A>
  34.       <LI><A href="#use_notes">How do I use Lotus Notes?</A>
  35.       <LI><A href="#set_printer">How do I set the printer?</A>
  36.       <LI><A href="#convert_vba">How do I convert a VBA macro to Perl?</A>
  37.       <LI><A href="#find_docs">Where do I find documentation for the object models?</A>
  38.       <LI><A href="#find_constants">OK, but can I at least find the constants that are exported from
  39.         Win32::OLE::Const?</A>
  40.       <LI><A href="#errors">Why doesn't $! get set with the error message I am generating?</A>
  41.       <LI><A href="#odbc_ole">Why do I get an error when using ODBC and OLE?</A>
  42.       <LI><A href="#strict">Why doesn't it work - even after all this?</A>
  43.     </UL>
  44.   <LI><A href="#AUTHOR_AND_COPYRIGHT">AUTHOR AND COPYRIGHT</A>
  45. </UL>
  46. <HR>
  47. <H1><A name="NAME">NAME</A></H1>
  48. <P>perlwin32faq12 - Using OLE with Perl</P>
  49. <HR>
  50. <H1><A name="DESCRIPTION">DESCRIPTION</A></H1>
  51. <P>How to use OLE automation with Perl - through the Win32::OLE module</P>
  52. <A name="use_ole">
  53. <HR>
  54. <H1>Can I use OLE with Perl?</H1>
  55. <P>Yes - otherwise this FAQ wouldn't have been a separate FAQ, but just part of perlwin32faq4 ;-)</P>
  56. <P>If you want to use OLE with Perl you need the Win32::OLE module. And you need to read the
  57. documentation that comes with it.</P>
  58. <P><CODE>use Win32::OLE</CODE> doesn't export any variables and functions to the main namespace, so
  59. if you want easy access to the <CODE>in</CODE> and <CODE>with</CODE> functions you should load the
  60. module with</P>
  61. <BLOCKQUOTE>
  62.   <P><CODE>use Win32::OLE qw(in with);</CODE></P>
  63. </BLOCKQUOTE>
  64. </A><A name="changed_by_4xx">
  65. <HR>
  66. <H1>What has changed with OLE since build 3xx</H1>
  67. <P>A lot - Gurusamy Sarathy and then Jan Dubois redesigned the code and added a bundle of
  68. enhancements. Old scripts should run with little or no modifications. When writing new scripts there
  69. is no excuse for not using the new Win32::OLE module options.</P>
  70. <P>Look at the Win::OLE module documentation (under Incompatibilities) and in particular the </A><A href="release-old.html#Whats_Changed">'What's
  71. changed from 300 series builds'</A> in the release notes.</P>
  72. <A name="print_word">
  73. <HR>
  74. <H1>How do I print a Microsoft Word document?</H1>
  75. <P>Use the method PrintOut on a document object, for example:</P>
  76. <BLOCKQUOTE>
  77.   <P><CODE>use strict;<BR>
  78.   use Win32::OLE;<BR>
  79.   use Win32::OLE::Const 'Microsoft Word';<BR>
  80.   <BR>
  81.   my $Word = Win32::OLE->new('Word.Application', 'Quit');<BR>
  82.   # $Word->{'Visible'} = 1;         # if you want to
  83.   see what's going on<BR>
  84.   $Word->Documents->Open("C:\\DOCUMENTS\\test.doc")<BR>
  85.       || die("Unable to open document ", Win32::OLE->LastError());<BR>
  86.   $Word->ActiveDocument->PrintOut({<BR>
  87.       Background => 0,<BR>
  88.       Append     => 0,<BR>
  89.       Range      => wdPrintAllDocument,<BR>
  90.       Item       => wdPrintDocumentContent,<BR>
  91.       Copies     => 1,<BR>
  92.       PageType   => wdPrintAllPages,<BR>
  93.   });</CODE></P>
  94. </BLOCKQUOTE>
  95. <P>or simply</P>
  96. <BLOCKQUOTE>
  97.   <P><CODE>$Word->ActiveDocument->PrintOut;</CODE></P>
  98. </BLOCKQUOTE>
  99. </A><A name="extract_cells">
  100. <HR>
  101. <H1>How do I extract a series of cells from Microsoft Excel?</H1>
  102. <P>If you have a sheet object you can extract the values of a series of cells through
  103. $Sheet->Range->{'Value'}, for example:</P>
  104. <BLOCKQUOTE>
  105.   <P><CODE>my $array = $Sheet->Range("A8:B9")->{'Value'};</CODE></P>
  106. </BLOCKQUOTE>
  107. <P>Now $array[0][0] contains the value of cell A8, $array[0][1] the value of cell B8, $array[1][0]
  108. the value of cell A9 and $array[1][1] the value of cell B9.</P>
  109. <P>What is returned is an two-dimensional array (OK, an array with references to arrays) that
  110. contains the values of the requested cells.</P>
  111. <P>A complete example is here:</P>
  112. <P> 
  113. <BLOCKQUOTE>
  114.   <CODE>use strict;<BR>
  115.   use Win32::OLE qw(in with);<BR>
  116.   use Win32::OLE::Const 'Microsoft Excel';<BR>
  117.   $Win32::OLE::Warn =
  118.   3;                                #
  119.   die on errors...<BR>
  120.   my $Excel = Win32::OLE->GetActiveObject('Excel.Application')<BR>
  121.       || Win32::OLE->new('Excel.Application', 'Quit');  # get
  122.   already active Excel<BR>
  123.                                                         #
  124.   application or open new<BR>
  125.   my $Book = $Excel->Workbooks->Open("C:\\DOCUMENTS\\test.xls"); # open Excel
  126.   file<BR>
  127.   my $Sheet =
  128.   $Book->Worksheets(1);                     #
  129.   select worksheet number 1<BR>
  130.   my $array =
  131.   $Sheet->Range("A8:B9")->{'Value'};        #
  132.   get the contents<BR>
  133.   $Book->Close;<BR>
  134.   foreach my $ref_array (@$array)
  135.   {                     #
  136.   loop through the array<BR>
  137.                                                         #
  138.   referenced by $array<BR>
  139.       foreach my $scalar (@$ref_array) {<BR>
  140.           print "$scalar\t";<BR>
  141.       }<BR>
  142.       print "\n";<BR>
  143.   }</CODE>
  144. </BLOCKQUOTE>
  145. <P>To retrieve the formatted value of a cell you should use the <CODE>{'Text'}</CODE> property
  146. instead of the <CODE>{'Value'}</CODE> property. This returns exactly what is being displayed on the
  147. screen though! If the column is not wide enough, you get a value of '######':</P>
  148. <BLOCKQUOTE>
  149.   <P><CODE>my $array = $Sheet->Range("A8:B9")->{'Text'};</CODE></P>
  150. </BLOCKQUOTE>
  151. </A><A name="make_chart">
  152. <HR>
  153. <H1>How do I make a chart in Microsoft Excel?</H1>
  154. <P>A good idea would be to record a macro in Microsoft Excel and then </A><A href="#convert_vba">convert
  155. it to Perl</A>. But here is a complete example:</P>
  156. <BLOCKQUOTE>
  157.   <P><CODE>use strict;<BR>
  158.   use Win32::OLE;<BR>
  159.   use Win32::OLE::Const 'Microsoft Excel';<BR>
  160.   <BR>
  161.   my $Excel = Win32::OLE->new("Excel.Application");<BR>
  162.   $Excel->{Visible} = 1;<BR>
  163.   <BR>
  164.   my $Book = $Excel->Workbooks->Add;<BR>
  165.   my $Sheet = $Book->Worksheets(1);<BR>
  166.   my $Range = $Sheet->Range("A2:C7");<BR>
  167.   $Range->{Value} =<BR>
  168.       [['Delivered', 'En route', 'To be shipped'],<BR>
  169.        [504, 102, 86],<BR>
  170.        [670, 150, 174],<BR>
  171.        [891, 261, 201],<BR>
  172.        [1274, 471, 321],<BR>
  173.        [1563, 536, 241]];<BR>
  174.   <BR>
  175.   my $Chart = $Excel->Charts->Add;<BR>
  176.   $Chart->{ChartType} = xlAreaStacked;<BR>
  177.   $Chart->SetSourceData({Source => $Range, PlotBy => xlColumns});<BR>
  178.   $Chart->{HasTitle} = 1;<BR>
  179.   $Chart->ChartTitle->{Text} = "Items delivered, en route and to be shipped";</CODE></P>
  180. </BLOCKQUOTE>
  181. <A name="save_chart">
  182. <HR>
  183. <H1>How do I save a chart from Microsoft Excel as GIF/JPEG/PNG?</H1>
  184. <P>You can use the Export method of a chart. If you have a chartobject the code looks like this</P>
  185. <BLOCKQUOTE>
  186.   <P><CODE>$ChartObj->Chart->Export({<BR>
  187.       FileName    => "$graphics_filename",<BR>
  188.       FilterName  => 'GIF',<BR>
  189.       Interactive => 0});</CODE></P>
  190. </BLOCKQUOTE>
  191. <P>A complete example that opens an Excel workbook, loops through all the charts and saves them as
  192. GIFs and then closes the Excel workbook is here:</P>
  193. <BLOCKQUOTE>
  194.   <P><CODE>use strict;<BR>
  195.   use Win32::OLE qw(in with);<BR>
  196.   use Win32::OLE::Const;<BR>
  197.   use Win32::OLE::Const 'Microsoft Excel';<BR>
  198.   $Win32::OLE::Warn = 3;        # die on errors...<BR>
  199.   <BR>
  200.   my $filename = 'c:\\documents\\test.xls';<BR>
  201.   my $filter = 'GIF';           # can be GIF,
  202.   JPG, JPEG or PNG<BR>
  203.   my $count = 0;<BR>
  204.   <BR>
  205.   my $Excel = Win32::OLE->GetActiveObject('Excel.Application')<BR>
  206.       || Win32::OLE->new('Excel.Application', 'Quit');  # use the
  207.   Excel application if it's open, otherwise open new<BR>
  208.   my $Book = $Excel->Workbooks->Open( $filename );      # open
  209.   the file<BR>
  210.   foreach my $Sheet (in $Book->Sheets)
  211.   {                #
  212.   loop through all sheets<BR>
  213.       foreach my $ChartObj (in $Sheet->ChartObjects) {  # loop
  214.   through all chartobjects in the sheet<BR>
  215.           my $savename = "$filename." . $count++ .
  216.   ".$filter";<BR>
  217.           $ChartObj->Chart->Export({<BR>
  218.               FileName    =>
  219.   $savename,<BR>
  220.               FilterName  =>
  221.   $filter,<BR>
  222.               Interactive =>
  223.   0});<BR>
  224.       }<BR>
  225.   }<BR>
  226.   $Book->Close;</CODE></P>
  227. </BLOCKQUOTE>
  228. </A><A name="run_macro">
  229. <HR>
  230. <H1>How do I run a macro in Microsoft Excel?</H1>
  231. <P>Macros in Microsoft Excel can be run by using the $Excel->Run method, for example:</P>
  232. <BLOCKQUOTE>
  233.   <P><CODE>$Excel->Run("PrintPDFFile");</CODE></P>
  234. </BLOCKQUOTE>
  235. <P>In order to do this, you of course need to have a macro in Excel that's called 'PrintPDFFile'...</P>
  236. </A><A name="set_name_cell">
  237. <HR>
  238. <H1>How do I set the name of a cell in Microsoft Excel?</H1>
  239. <P>Use the Names->Add method on a sheet, giving it a name and a range object to apply the name
  240. to, for example:</P>
  241. <BLOCKQUOTE>
  242.   <P><CODE>$Sheet->Names->Add({Name => 'NetCost', RefersTo =>
  243.   $Sheet->Range('$B$10')});</CODE></P>
  244. </BLOCKQUOTE>
  245. </A><A name="create_new_folder">
  246. <HR>
  247. <H1>How do I create a new folder in Outlook?</H1>
  248. <P>Again, an example :-)</P>
  249. <BLOCKQUOTE>
  250.   <P><CODE>use strict;<BR>
  251.   use Win32::OLE;<BR>
  252.   use Win32::OLE::Const 'Microsoft Outlook';<BR>
  253.   <BR>
  254.   my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit');<BR>
  255.   my $ol = Win32::OLE::Const->Load($Outlook);<BR>
  256.   <BR>
  257.   my $namespace = $Outlook->GetNamespace("MAPI");<BR>
  258.   my $Folder = $namespace->GetDefaultFolder(olFolderInbox);<BR>
  259.   my $NewFolder = $Folder->Folders->Add("Test1");</CODE></P>
  260. </BLOCKQUOTE>
  261. </A><A name="use_ado">
  262. <HR>
  263. <H1>How do I use ADO?</H1>
  264. <P>In order to use ActiveX Data Objects (ADO) you can just</P>
  265. <BLOCKQUOTE>
  266.   <P><CODE>use strict;<BR>
  267.   use Win32::OLE;<BR>
  268.   use Win32::OLE::Const 'Microsoft ActiveX Data Objects';<BR>
  269.   my $Conn = Win32::OLE->new('ADODB.Connection'); # creates a connection object<BR>
  270.   my $RS = Win32::OLE->new('ADODB.Recordset');    # creates a recordset
  271.   object<BR>
  272.   $Conn->Open('DBname');                          #
  273.   opens the database connection<BR>
  274.   <BR>
  275.   my $Fields = ['Id', 'Name', 'Phone'];<BR>
  276.   my $Values = [1, 'Joe Doe', '555-1234'];<BR>
  277.   $RS->AddNew($Fields,
  278.   $Values);                  #
  279.   adds a record<BR>
  280.   <BR>
  281.   print "This didn't go well: ", Win32::OLE->LastError(), "\n";<BR>
  282.       if (Win32::OLE->LastError());<BR>
  283.   <BR>
  284.   $RS->Close;<BR>
  285.   $Conn->Close;</CODE></P>
  286. </BLOCKQUOTE>
  287. <P>To get further than this you should have a look at the ADO FAQ at </A><A href="http://www.fastnetltd.ndirect.co.uk/Perl/perl-win32-database.html">http://www.fastnetltd.ndirect.co.uk/Perl/perl-win32-database.html</A>
  288. or Jan Dubois article in TPJ#10 (visit The Perl Journal at <A href="http://.tpj.com/">http://tpj.com/</A>).</P>
  289. <A name="use_notes">
  290. <HR>
  291. <H1>How do I use Lotus Notes?</H1>
  292. <P>Lotus Notes can be accessed through OLE, for example like this:</P>
  293. <BLOCKQUOTE>
  294.   <P><CODE>use strict;<BR>
  295.   use Win32::OLE;<BR>
  296.   my $Notes = Win32::OLE->new('Notes.NotesSession')<BR>
  297.       or die "Cannot start Lotus Notes Session object.\n";<BR>
  298.   my ($Version) = ($Notes->{NotesVersion} =~ /\s*(.*\S)\s*$/);<BR>
  299.   print "The current user is $Notes->{UserName}.\n";<BR>
  300.   print "Running Notes \"$Version\" on \"$Notes->{Platform}\".\n";<BR>
  301.   my $Database = $Notes->GetDatabase('', 'help4.nsf');<BR>
  302.   my $AllDocuments = $Database->AllDocuments;<BR>
  303.   my $Count = $AllDocuments->Count;<BR>
  304.   print "There are $Count documents in the database.\n";<BR>
  305.   for (my $Index = 1 ; $Index <= $Count ; ++$Index) {<BR>
  306.       my $Document = $AllDocuments->GetNthDocument($Index);<BR>
  307.       printf "$Index. %s\n", $Document->GetFirstItem('Subject')->{Text};<BR>
  308.       my $Values = $Document->GetItemValue('Index_Entries');<BR>
  309.       foreach my $Value (@$Values) {<BR>
  310.           print " Index: $Value\n";<BR>
  311.       }<BR>
  312.       last unless $Index < 5;<BR>
  313.   }</CODE></P>
  314. </BLOCKQUOTE>
  315. <P>You can access all objects that are accessible to LotusScript, and the LotusScript classes can be
  316. seen at </A><A href="http://www.lotus.com/products/lotusscript.nsf">http://www.lotus.com/products/lotusscript.nsf</A>.
  317. A good idea would also be to read Jan Dubois article in TPJ#10 (visit The Perl Journal at <A href="http://.tpj.com/">http://tpj.com/</A>)</P>
  318. <A name="set_printer">
  319. <HR>
  320. <H1>How do I set the printer in Word?</H1>
  321. <P>The active printer can be set and retrieved through the word application object with <CODE>$Word->{ActivePrinter}
  322. = $printername</CODE>.</P>
  323. </A><A name="convert_vba">
  324. <HR>
  325. <H1>How do I convert a VBA macro to Perl?</H1>
  326. <P>If you record a macro in Microsoft Office, this can often be translated directly into Perl. In
  327. Visual Basic for Applications (VBA) the syntax is like this:</P>
  328. <BLOCKQUOTE>
  329.   <P><CODE>object.method(argument).property = value</CODE></P>
  330. </BLOCKQUOTE>
  331. <P>In Perl this becomes</P>
  332. <BLOCKQUOTE>
  333.   <P><CODE>object->method(argument)->{property} = value;</CODE></P>
  334. </BLOCKQUOTE>
  335. <P>So for example this code from VBA:</P>
  336. <BLOCKQUOTE>
  337.   <P><CODE>ActiveChart.Axes(xlCategory, xlPrimary).CategoryType = xlCategoryScale</CODE></P>
  338. </BLOCKQUOTE>
  339. <P>becomes this in Perl:</P>
  340. <BLOCKQUOTE>
  341.   <P><CODE>$Chart->Axes(xlCategory, xlPrimary)->{CategoryType} = xlCategoryScale;</CODE></P>
  342. </BLOCKQUOTE>
  343. </A><A name="find_docs">
  344. <HR>
  345. <H1>Where do I find documentation for the object models?</H1>
  346. <P>The best way to learn about methods/properties would be through an OLE type browser if the
  347. documentation is unavailable.</P>
  348. <P>If you have Microsoft Excel or Microsoft Word available, go into the Visual Basic Editor
  349. (Alt+F11). Now you can open the object browser window (F2) and see what you find.</P>
  350. <P>There is also an OleView program (various names and versions) included in Microsoft Visual C++ /
  351. Microsoft Visual Studio if you don't have Office. Or you can download it from the Microsoft COM
  352. website ( </A><A href="http://www.microsoft.com/com/">http://www.microsoft.com/com/</A>).</P>
  353. <P>But it is still possible that Notes doesn't reveal anything; objects are not required to provide
  354. type info support. For example Lotus Notes doesn't reveal nothing about it's internal constants,
  355. methods and properties; you have to look them up in the documentation.</P>
  356. <P>For Lotus Notes look at <A href="http://www.lotus.com/products/lotusscript.nsf">http://www.lotus.com/products/lotusscript.nsf</A>.</P>
  357. <A name="find_constants">
  358. <HR>
  359. <H1>OK, but can I at least find the constants that are exported from Win32::OLE::Const?</H1>
  360. <P>Yes, you can use the following code example to view all the constants - you really shouldn't need
  361. this, but if you want to know what's going on, it might help:</P>
  362. <BLOCKQUOTE>
  363.   <P><CODE>use strict;<BR>
  364.   use Win32::OLE;<BR>
  365.   use Win32::OLE::Const;<BR>
  366.   <BR>
  367.   my $xl = Win32::OLE::Const->Load("Microsoft Excel");<BR>
  368.   printf "Excel type library contains %d constants:\n", scalar keys %$xl;<BR>
  369.   foreach my $Key (sort keys %$xl) {<BR>
  370.       print "$Key = $xl->{$Key}\n";<BR>
  371.   }</CODE></P>
  372. </BLOCKQUOTE>
  373. <P>Generally you should look at the documentation for Win32::OLE::Const.</P>
  374. </A><A name="errors">
  375. <HR>
  376. <H1>Why doesn't $! get set with the error message I am generating?</H1>
  377. <P>Error messages from Win32::OLE doesn't go to the $! variable, but can be accessed as <CODE>Win32::OLE->LastError()</CODE></P>
  378. </A><A name="odbc_ole">
  379. <HR>
  380. <H1>Why do I get an error when using ODBC and OLE?</H1>
  381. <P>For some reason you get an 'OleInitialize' error if you open an OLE application first and then
  382. open an ODBC connection to the Access ODBC driver. If you do it the other way around, there is no
  383. problem with this.</P>
  384. <P>It looks like the Access ODBC driver calls OleInitialize(). This fails when Win32::OLE already
  385. initialized the COM subsystem as "apartment threaded".</P>
  386. <P>In order to remove the error either start the ODBC driver before the OLE application or, better
  387. yet, initialize the OLE system with <CODE>Win32::OLE->Initialize(Win32::OLE::COINIT_OLEINITIALIZE);</CODE></P>
  388. </A><A name="strict">
  389. <HR>
  390. <H1>Why doesn't it work - even after all this?</H1>
  391. <P>Execute your scripts with <CODE>perl -w</CODE> and <CODE>use strict</CODE> - this catches most of
  392. your errors. Apart from this, read the documentation for Win32::OLE (a good start) and possibly the
  393. documentation for the object you are trying to use.</P>
  394. <P>In the case of Microsoft Office 97, make sure that you have at least updated to Service Release 1
  395. - much of the OLE in Microsoft Office 97 is broken without this update.</P>
  396. <P> 
  397. <HR>
  398. <H1></A><A name="AUTHOR_AND_COPYRIGHT">AUTHOR AND COPYRIGHT</A></H1>
  399. <P>This FAQ was compiled by Henning Michael M°ller-Nielsen of RTO based on examples by many people,
  400. especially Jan Dubois. It is maintained by Henning Michael M°ller-Nielsen, Philip Martin, Kevin
  401. Meltzer and Eric Smith at <A href="mailto:perlwin32faq@rto.dk">perlwin32faq@rto.dk</A>.
  402. <P>This FAQ is in the public domain. If you use it, however, please ensure that you give credit to
  403. the original authors.
  404.  
  405. <!-- beginning of leaf footer-->
  406. <P> 
  407. <TABLE>
  408.   <TR>
  409.     <TD class="block" valign="MIDDLE" width="100%" bgcolor="#cccccc"><STRONG>
  410.       <P class="block"> ActivePerl FAQ</P>
  411.       </STRONG></TD>
  412.   </TR>
  413.   <!-- end  of leaf footer-->
  414. </TABLE>
  415.  
  416.  
  417.  
  418. <!-- end of leaf footer-->
  419.  
  420. </BODY>
  421.  
  422. </HTML>
  423.