home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 15 Message / 15-Message.zip / UU991016.zip / Ue991015.txt < prev    next >
Text File  |  1999-10-16  |  20KB  |  579 lines

  1.  
  2.                    comp.os.os2.programmer.porting   (Usenet)
  3.  
  4.                  Saturday, 09-Oct-1999 to Friday, 15-Oct-1999
  5.  
  6. +----------------------------------------------------------------------------+
  7.  
  8. From: nkonll@eggman-network.hypermart.net               14-Oct-99 02:01:07
  9.   To: All                                               14-Oct-99 03:59:08
  10. Subj: Stop others from using your computer!!!  622
  11.  
  12. From: nkonll@eggman-network.hypermart.net
  13.  
  14. That's right....stop others from using your computer now!
  15. Desktop Blocker will password protect your Windows system so that nobody
  16. except for you will be able to access your desktop.
  17. Keep that co-worker off your computer, keep the babysitter off the Internet,
  18. and keep the wife from discovering your "collection"(you shouldn't be looking
  19. at that stuff anyway).
  20. Desktop Blocker is a FREE download at: http://www.eggman.net/desktopblocker
  21. Take a couple seconds to view our SCREENSHOT:
  22. http://www.eggman.net/software/dbss.htm
  23. Lock-up your desktop today!!!
  24. -EggMan Network
  25.  
  26. trpirgbyddbfdfyiddoudbclyouwbmwhelhhrkcgzizozndperxk
  27.  
  28. --- WtrGate+ v0.93.p7 sn 165
  29.  * Origin: Usenet: @Home Network (1:109/42)
  30.  
  31. +----------------------------------------------------------------------------+
  32.  
  33. From: nospam_ktk@netlabs.org                            14-Oct-99 20:43:26
  34.   To: All                                               14-Oct-99 20:03:13
  35. Subj: Compiling St6arOffice with EGCS
  36.  
  37. From: "Adrian Gschwend" <nospam_ktk@netlabs.org>
  38.  
  39. I talked to some people from StarOffice at Warpstock Europe and they told me,
  40. that they have a serious problem with the OS/2 port of it. Until now they
  41. used to compile the code with VAcpp 3.65 on OS/2 but now they use
  42. "namespaces" in the code and because VAcpp 4.0 does not support commandline
  43. compiling, they can't compile it on OS/2 anymore (the project is simply too
  44. big for the VAcpp 4.0 workframe). On Linux they use the Pentium optimized
  45. version of the GNU compiler and they tried the same on OS/2. But
  46. unfortunately there is a problem in the OS/2 port:
  47.  
  48. (Taken from http://www.goof.com/pcg/os2/#Bugs)
  49.  
  50. Known bugs:
  51.  
  52. emxomf now traps (sometimes?) when compiling with -g (debug) switch. This is
  53. due to new format of debugging info (DWARF2). I do not know how to fix this.
  54. Use A.OUT format (no -Zomf) for debugging and pmgdb. 
  55.  
  56. Solution: This happens because pgcc uses new stabs format (-gstabs+) while
  57. emxomf understands only the standard stabs debugging info. I've partialy
  58. fixed this by adding a tiny command-line preprocessor to gcc. It scans argv[]
  59. and looks for both -Zomf and -g# where # is a number. If it finds one, it
  60. replaces -g# by -gstabs#. This doesn't always help, however. 
  61. ---
  62.  
  63. As you can see this is a limitation in EMX, we now have to find people who
  64. are able to fix this (which will not be an easy task I think). We are already
  65. in contact with Eberhard Mattes but we need more support. If you think you
  66. are able to fix this, please get in contact with Oliver Braun
  67. <obr@stardivision.de>. Please JUST reply if you really think you can help
  68. StarDivision.
  69.  
  70. A StarOffice without debug informations can not be tested and if noone can
  71. fix this limitation, Sun can not provide a new version for OS/2 ! So you see
  72. this is important for the future of StarOffice on OS/2.
  73.  
  74. Thanks for your support
  75.  
  76. Adrian Gschwend
  77. @ OS/2 Netlabs
  78. http://www.netlabs.org
  79.  
  80.  
  81. --- WtrGate+ v0.93.p7 sn 165
  82.  * Origin: Usenet: OS/2 Netlabs (1:109/42)
  83.  
  84. +----------------------------------------------------------------------------+
  85.  
  86. From: robmv@ibm.net                                     14-Oct-99 16:19:21
  87.   To: All                                               14-Oct-99 20:03:13
  88. Subj: Re: Compiling St6arOffice with EGCS
  89.  
  90. From: Robert Marcano <robmv@ibm.net>
  91.  
  92. Este es un mensaje de varias partes en formato MIME.
  93. --------------9B0739FDDDD473E461397F2C
  94. Content-Type: text/plain; charset=iso-8859-1
  95. Content-Transfer-Encoding: 8bit
  96.  
  97. What???VisualAge 4.0 include on an extra CD command line compilers dor OS/2
  98. and
  99. for Windows, (3.6 level) with all VisualAge 4.0 support (namespaces, etc....)
  100.  
  101. Adrian Gschwend escribió:
  102.  
  103. > I talked to some people from StarOffice at Warpstock Europe and they told
  104. me,
  105. > that they have a serious problem with the OS/2 port of it. Until now they
  106. > used to compile the code with VAcpp 3.65 on OS/2 but now they use
  107. > "namespaces" in the code and because VAcpp 4.0 does not support commandline
  108. > compiling, they can't compile it on OS/2 anymore (the project is simply too
  109. > big for the VAcpp 4.0 workframe). On Linux they use the Pentium optimized
  110. > version of the GNU compiler and they tried the same on OS/2. But
  111. > unfortunately there is a problem in the OS/2 port:
  112. >
  113. > (Taken from http://www.goof.com/pcg/os2/#Bugs)
  114. >
  115. > Known bugs:
  116. >
  117. > emxomf now traps (sometimes?) when compiling with -g (debug) switch. This is
  118. > due to new format of debugging info (DWARF2). I do not know how to fix this.
  119. > Use A.OUT format (no -Zomf) for debugging and pmgdb.
  120. >
  121. > Solution: This happens because pgcc uses new stabs format (-gstabs+) while
  122. > emxomf understands only the standard stabs debugging info. I've partialy
  123. > fixed this by adding a tiny command-line preprocessor to gcc. It scans
  124. argv[]
  125. > and looks for both -Zomf and -g# where # is a number. If it finds one, it
  126. > replaces -g# by -gstabs#. This doesn't always help, however.
  127. > ---
  128. >
  129. > As you can see this is a limitation in EMX, we now have to find people who
  130. > are able to fix this (which will not be an easy task I think). We are
  131. already
  132. > in contact with Eberhard Mattes but we need more support. If you think you
  133. > are able to fix this, please get in contact with Oliver Braun
  134. > <obr@stardivision.de>. Please JUST reply if you really think you can help
  135. > StarDivision.
  136. >
  137. > A StarOffice without debug informations can not be tested and if noone can
  138. > fix this limitation, Sun can not provide a new version for OS/2 ! So you see
  139. > this is important for the future of StarOffice on OS/2.
  140. >
  141. > Thanks for your support
  142. >
  143. > Adrian Gschwend
  144. > @ OS/2 Netlabs
  145. > http://www.netlabs.org
  146.  
  147. --------------9B0739FDDDD473E461397F2C
  148. Content-Type: text/x-vcard; charset=us-ascii;
  149.  name="robmv.vcf"
  150. Content-Transfer-Encoding: 7bit
  151. Content-Description: Tarjeta para Robert Marcano
  152. Content-Disposition: attachment;
  153.  filename="robmv.vcf"
  154.  
  155. begin:vcard 
  156. n:Marcano Varela;Robert Jesús
  157. x-mozilla-html:TRUE
  158. org:Programación Mecanizada C.A. (PROMCA)
  159. adr:;;CCCT, 1ra Etapa, piso 2, oficina 205,
  160. Chuao;Caracas;Miranda;1060;Venezuela
  161. version:2.1
  162. email;internet:robmv@ibm.net
  163. title:System Architect
  164. tel;fax:(+582) 9591729
  165. tel;home:(+5816) 6218891
  166. tel;work:(+582)9 591665
  167. note;quoted-printable:Certified VisualAge for Smalltalk Associate
  168. Developer=0D=0ACertified VisualAge for C++ Associate Developer=0D=0ACertified
  169. OS/2 Warp Engineer
  170. x-mozilla-cpt:;0
  171. fn:Robert Jesús Marcano Varela
  172. end:vcard
  173.  
  174. --------------9B0739FDDDD473E461397F2C--
  175.  
  176. --- WtrGate+ v0.93.p7 sn 165
  177.  * Origin: Usenet: =?iso-8859-1?Q?Programaci=F3n?= Mecanizada C.A. (
  178. (1:109/42)
  179.  
  180. +----------------------------------------------------------------------------+
  181.  
  182. From: nospam_ktk@netlabs.org                            14-Oct-99 23:04:18
  183.   To: All                                               14-Oct-99 20:03:13
  184. Subj: Re: Compiling St6arOffice with EGCS
  185.  
  186. From: "Adrian Gschwend" <nospam_ktk@netlabs.org>
  187.  
  188. On Thu, 14 Oct 1999 16:19:43 -0600, Robert Marcano wrote:
  189.  
  190. >What???VisualAge 4.0 include on an extra CD command line compilers dor OS/2
  191. and
  192. >for Windows, (3.6 level) with all VisualAge 4.0 support (namespaces, etc....)
  193.  
  194. so this would be cool, StarDiv told me that there are no commandline tools, I
  195. have to ask them.
  196.  
  197. Thanks for your info
  198.  
  199. cu
  200.  
  201. Adrian
  202.  
  203.  
  204. ---
  205. Adrian Gschwend
  206. @ OS/2 Netlabs
  207.  
  208. ICQ: 22419590
  209. ktk@netlabs.org
  210. -------
  211. The OS/2 OpenSource Project:
  212. http://www.netlabs.org
  213.  
  214.  
  215. --- WtrGate+ v0.93.p7 sn 165
  216.  * Origin: Usenet: OS/2 Netlabs (1:109/42)
  217.  
  218. +----------------------------------------------------------------------------+
  219.  
  220. From: paul_floyd@see.sig                                15-Oct-99 10:26:15
  221.   To: All                                               15-Oct-99 10:27:10
  222. Subj: Re: Compiling St6arOffice with EGCS
  223.  
  224. From: Paul FLOYD <paul_floyd@see.sig>
  225.  
  226. Robert Marcano wrote:
  227. > What???VisualAge 4.0 include on an extra CD command line compilers dor OS/2
  228. and
  229. > for Windows, (3.6 level) with all VisualAge 4.0 support (namespaces,
  230. etc....)
  231.  
  232. This is not correct, to my knowledge.
  233.  
  234. The VisualAge C++ 4.0 Professional for OS/2 and Windows NT (or whatever
  235. the catchy name for it is) contains 4 CDs. 2 are for NT, which I'll
  236. ignore, and the other 2 are for OS/2. The first is VAC++ 4.0, which
  237. claims ISO C++ compliance. This is intended for use with the IDE. It is
  238. possible to build from the command line, but not using traditional style
  239. makefiles, you have to use the projects created with the IDE. This
  240. product cannot debug C source or DLLs either.
  241.  
  242. The second disk has VAC++ 3.6.5. This is a traditional command line
  243. compiler (icc?), and can work with traditional make files (nmake?). It
  244. has a separate debugger (icat? ipmd?) which can debug DLLs and C code.
  245. However, the level of C++ compliance is back at the 1992 level, with a
  246. few bits added. I can't remember exactly what though, you'd either have
  247. to look in the IBM web pages or search the IBM VAC++ newsgroups.
  248.  
  249. [snip]
  250.  
  251. Regards
  252. Paul
  253. -- 
  254. Paul Floyd    Focal Ingenierie Sud
  255. Mail: paul underscore floyd at focal dot fr
  256. Sig tagline under contemplation.
  257.  
  258. --- WtrGate+ v0.93.p7 sn 165
  259.  * Origin: Usenet: Focal Ingenierie Sud (1:109/42)
  260.  
  261. +----------------------------------------------------------------------------+
  262.  
  263. From: cwr@cts.com                                       15-Oct-99 09:32:28
  264.   To: All                                               15-Oct-99 10:27:10
  265. Subj: Re: Compiling St6arOffice with EGCS
  266.  
  267. From: Will Rose <cwr@cts.com>
  268.  
  269. In comp.os.os2.programmer.tools Adrian Gschwend <nospam_ktk@netlabs.org>
  270. wrote:
  271. : On Thu, 14 Oct 1999 16:19:43 -0600, Robert Marcano wrote:
  272.  
  273. :>What???VisualAge 4.0 include on an extra CD command line compilers dor OS/2
  274. and
  275. :>for Windows, (3.6 level) with all VisualAge 4.0 support (namespaces,
  276. etc....)
  277.  
  278. : so this would be cool, StarDiv told me that there are no commandline tools,
  279. I
  280. : have to ask them.
  281.  
  282. AFAIK the command line compiler in 4.0 (3.6), and isn't to the
  283. current C++ standard.  (I don't know if it includes namespaces).
  284. The 4.0 compiler is current.
  285.  
  286.  
  287. Will
  288. cwr@crash.cts.com
  289.  
  290. --- WtrGate+ v0.93.p7 sn 165
  291.  * Origin: Usenet: CTS Network Services (1:109/42)
  292.  
  293. +----------------------------------------------------------------------------+
  294.  
  295. From: obr@stardivision.de                               15-Oct-99 11:18:14
  296.   To: All                                               15-Oct-99 10:27:11
  297. Subj: Re: Compiling StarOffice with EGCS
  298.  
  299. From: Oliver Braun <obr@stardivision.de>
  300.  
  301. > What???VisualAge 4.0 include on an extra CD command line compilers 
  302. > dor OS/2 and for Windows, (3.6 level) with all VisualAge 4.0 
  303. > support (namespaces, etc....)
  304.  
  305. That`s simply not true. The IBM documentation ?Choosing the Right C++ 
  306. CD? of the Visual Age 4.0 Package states in the section ?C++ Standard 
  307. Compliance? for Version 4.0 ANSI/ISO 1998 C++ Standard and for the 3.6 
  308. ANSI 1992 Draft.
  309.  
  310. If you try to compile a source file with namespaces in it, the 3.6 
  311. compile simply states: namespace is not a type name.
  312.  
  313. If there is any undocumented compiler switch to make namespaces work 
  314. with the 3.6 compiler, any report of it will be appreciated.
  315.  
  316. Oliver Braun
  317. StarOffice Software Entwicklungs GmbH
  318.  
  319.  
  320.  
  321.  
  322. --- WtrGate+ v0.93.p7 sn 165
  323.  * Origin: Usenet: Star Division GmbH, Hamburg, Germany (1:109/42)
  324.  
  325. +----------------------------------------------------------------------------+
  326.  
  327. From: shikojo@hotmail.com                               15-Oct-99 14:04:20
  328.   To: All                                               15-Oct-99 14:34:17
  329. Subj: Your New StartPage !
  330.  
  331. From: shikojo@hotmail.com (Shikojo)
  332.  
  333. I found the best ever site on the net !!!
  334. Here you could find best Computers, Internet, Games, Entertainment and 
  335. other links !
  336. http://goldcity.hello.to/
  337.  
  338. -- 
  339. http://hey.to/netmoney
  340. The Revolution In Internet Begins !
  341. Get Paid By The Net !
  342. Make Money Surfing The Web !
  343.  
  344. --- WtrGate+ v0.93.p7 sn 165
  345.  * Origin: Usenet: Get Paid By The Net (1:109/42)
  346.  
  347. +----------------------------------------------------------------------------+
  348.  
  349. From: mamodeo@stny.rr.com                               15-Oct-99 10:24:04
  350.   To: All                                               15-Oct-99 14:34:17
  351. Subj: Re: Compiling St6arOffice with EGCS
  352.  
  353. From: Marty <mamodeo@stny.rr.com>
  354.  
  355. Adrian Gschwend wrote:
  356. > I talked to some people from StarOffice at Warpstock Europe and they told
  357. me,
  358. > that they have a serious problem with the OS/2 port of it. Until now they
  359. > used to compile the code with VAcpp 3.65 on OS/2 but now they use
  360. > "namespaces" in the code and because VAcpp 4.0 does not support commandline
  361. > compiling, they can't compile it on OS/2 anymore (the project is simply too
  362. > big for the VAcpp 4.0 workframe). On Linux they use the Pentium optimized
  363. > version of the GNU compiler and they tried the same on OS/2. But
  364. > unfortunately there is a problem in the OS/2 port:
  365. > (Taken from http://www.goof.com/pcg/os2/#Bugs)
  366. > Known bugs:
  367. > emxomf now traps (sometimes?) when compiling with -g (debug) switch. This is
  368. > due to new format of debugging info (DWARF2). I do not know how to fix this.
  369. > Use A.OUT format (no -Zomf) for debugging and pmgdb.
  370.  
  371. Is there any reason they wouldn't want to use the A.OUT format?
  372.  
  373. I've got full debug info in MAME (producing a 41MB executable) and it
  374. works great.  All I had to do is leave everything in A.OUT form and use
  375. EMXBIND as the last step in the build process.
  376.  
  377. All this does is add a reliance on the EMX runtime DLLs, but who doesn't
  378. have them nowadays?
  379.  
  380. - Marty
  381.  
  382. --- WtrGate+ v0.93.p7 sn 165
  383.  * Origin: Usenet: IBM Global Services North -- Burlington, Vermont,
  384. (1:109/42)
  385.  
  386. +----------------------------------------------------------------------------+
  387.  
  388. From: robmv@ibm.net                                     15-Oct-99 11:43:12
  389.   To: All                                               15-Oct-99 14:34:17
  390. Subj: Re: Compiling St6arOffice with EGCS
  391.  
  392. From: Robert Marcano <robmv@ibm.net>
  393.  
  394. Este es un mensaje de varias partes en formato MIME.
  395. --------------F34DCDF940D3EA154CA45FD9
  396. Content-Type: text/plain; charset=iso-8859-1
  397. Content-Transfer-Encoding: 8bit
  398.  
  399. Sorry for the mistake, I use the IDE, and I erroneously interpreted the
  400. problem.
  401. Thanks for the info. post this question to the newsgroups in
  402. news.software.ibm.com
  403. too
  404.  
  405.  
  406. Will Rose escribió:
  407.  
  408. > In comp.os.os2.programmer.tools Adrian Gschwend <nospam_ktk@netlabs.org>
  409. wrote:
  410. > : On Thu, 14 Oct 1999 16:19:43 -0600, Robert Marcano wrote:
  411. >
  412. > :>What???VisualAge 4.0 include on an extra CD command line compilers dor
  413. OS/2 and
  414. > :>for Windows, (3.6 level) with all VisualAge 4.0 support (namespaces,
  415. etc....)
  416. >
  417. > : so this would be cool, StarDiv told me that there are no commandline
  418. tools, I
  419. > : have to ask them.
  420. >
  421. > AFAIK the command line compiler in 4.0 (3.6), and isn't to the
  422. > current C++ standard.  (I don't know if it includes namespaces).
  423. > The 4.0 compiler is current.
  424. >
  425. > Will
  426. > cwr@crash.cts.com
  427.  
  428. --------------F34DCDF940D3EA154CA45FD9
  429. Content-Type: text/x-vcard; charset=us-ascii;
  430.  name="robmv.vcf"
  431. Content-Transfer-Encoding: 7bit
  432. Content-Description: Tarjeta para Robert Marcano
  433. Content-Disposition: attachment;
  434.  filename="robmv.vcf"
  435.  
  436. begin:vcard 
  437. n:Marcano Varela;Robert Jesús
  438. x-mozilla-html:TRUE
  439. org:Programación Mecanizada C.A. (PROMCA)
  440. adr:;;CCCT, 1ra Etapa, piso 2, oficina 205,
  441. Chuao;Caracas;Miranda;1060;Venezuela
  442. version:2.1
  443. email;internet:robmv@ibm.net
  444. title:System Architect
  445. tel;fax:(+582) 9591729
  446. tel;home:(+5816) 6218891
  447. tel;work:(+582)9 591665
  448. note;quoted-printable:Certified VisualAge for Smalltalk Associate
  449. Developer=0D=0ACertified VisualAge for C++ Associate Developer=0D=0ACertified
  450. OS/2 Warp Engineer
  451. x-mozilla-cpt:;0
  452. fn:Robert Jesús Marcano Varela
  453. end:vcard
  454.  
  455. --------------F34DCDF940D3EA154CA45FD9--
  456.  
  457. --- WtrGate+ v0.93.p7 sn 165
  458.  * Origin: Usenet: =?iso-8859-1?Q?Programaci=F3n?= Mecanizada C.A. (
  459. (1:109/42)
  460.  
  461. +----------------------------------------------------------------------------+
  462.  
  463. From: ilya@math.ohio-state.edu                          15-Oct-99 16:39:12
  464.   To: All                                               15-Oct-99 21:58:14
  465. Subj: Re: Compiling St6arOffice with EGCS
  466.  
  467. From: ilya@math.ohio-state.edu (Ilya Zakharevich)
  468.  
  469. [A complimentary Cc of this posting was sent to Marty 
  470. <mamodeo@stny.rr.com>],
  471. who wrote in article <38073908.303BE79C@stny.rr.com>:
  472. > Is there any reason they wouldn't want to use the A.OUT format?
  473. > I've got full debug info in MAME (producing a 41MB executable) and it
  474. > works great.  All I had to do is leave everything in A.OUT form and use
  475. > EMXBIND as the last step in the build process.
  476. > All this does is add a reliance on the EMX runtime DLLs, but who doesn't
  477. > have them nowadays?
  478.  
  479. What the heck?  Debug in a.out, and make a production copy in omf.
  480.  
  481. Ilya
  482.  
  483. --- WtrGate+ v0.93.p7 sn 165
  484.  * Origin: Usenet: Department of Mathematics, The Ohio State Univers
  485. (1:109/42)
  486.  
  487. +----------------------------------------------------------------------------+
  488.  
  489. From: dannospammo@us.ibm.com                            15-Oct-99 15:57:12
  490.   To: All                                               15-Oct-99 21:58:14
  491. Subj: Re: Compiling St6arOffice with EGCS
  492.  
  493. From: "Dan Nimick" <dannospammo@us.ibm.com>
  494.  
  495. On Thu, 14 Oct 1999 20:43:52 +0200 (CDT), Adrian Gschwend wrote:
  496.  
  497. >VAcpp 4.0 does not support commandline compiling
  498.  
  499. To compile VAge 4.0 from the command line starting from a traditional
  500. MAKE file:
  501.  
  502. Run the MAKE2CFG utility (ex. make2cfg -f makefile)
  503.  
  504. This will give you a pretty good version of a ICC file that can be used
  505. with:
  506.  
  507. vacbld xxx.icc
  508.  
  509. where xxx.icc is the file created by make2cfg.
  510.  
  511. Now, I've only done this once, and it was a small project (one EXE, no
  512. DLL), but it worked like a champ once I got my MAKE file useable by the
  513. make2cfg utility.  The file had a bunch of junk the utility didn't
  514. understand.  I ended up using VAge to create a make file in its format
  515. as a template.  Then I put all my stuff in that template, then ran
  516. make2cfg and viola!!
  517.  
  518. Luck...
  519. Dan Nimick
  520.  
  521.  
  522. --- WtrGate+ v0.93.p7 sn 165
  523.  * Origin: Usenet: Global Network Services - Remote Access Mail & Ne
  524. (1:109/42)
  525.  
  526. +----------------------------------------------------------------------------+
  527.  
  528. From: bschwand@dvart.com                                15-Oct-99 13:47:08
  529.   To: All                                               15-Oct-99 21:58:15
  530. Subj: Re: Print to graphic [was Re: METAFILE CONVERTION]
  531.  
  532. From: bruno schwander <bschwand@dvart.com>
  533.  
  534. the best in my opinion is to print to a postscript file using a postscript
  535. printer
  536. driver.
  537. then use ghostscript to create an EPS file from it.
  538.  
  539. I love postscript, if anything goes wrong, you can always look at the source
  540. code :-)
  541.  
  542. bruno
  543.  
  544. Mat Kramer wrote:
  545.  
  546. > A more general question: is there a printer driver that will allow
  547. > output to be saved as a file and then imported into Word 97 as a
  548. > graphic?  Word will import HPGL -- which driver should I use for that?
  549. >
  550. > bv wrote:
  551. > > You could get the Windows metafile into an OS/2 metafile format simply by
  552. > > printing it under WinOS/2 and intercepting the spoolfile. The spoolfile is 
  553. an
  554. > > OS/2 metafile, but it is probably not in a format your application will be 
  555. able
  556. > > to handle.
  557. > >
  558. > > I think the best way is to convert them to a format like EPS, and exchange
  559. > > that. This should work for some types of metafiles.
  560. >
  561. > --
  562. > Mat Kramer [MekTek] mek@compuserve.com
  563. > VyperHelp: http://ourworld.compuserve.com/homepages/mek/vyper.htm
  564.  
  565. --- WtrGate+ v0.93.p7 sn 165
  566.  * Origin: Usenet: Posted via Supernews, http://www.supernews.com (1:109/42)
  567.  
  568. +----------------------------------------------------------------------------+
  569.  
  570. +============================================================================+
  571.