home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 22 / AMUG_22-1.ISO / Files / Bus / Database / FileMaker / ChartMaker Pro 1.2.sit / CMPVBAR.FP3 (.txt) < prev    next >
Encoding:
FileMaker Pro Database  |  1997-08-07  |  175.8 KB  |  764 lines  |  [FMP3/FMP3]

  1. CMPVBAR.FP3
  2. FMP3FMP3
  3.  play makAll work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All 
  4. HBAM2016AUG95
  5. Pro 3.0
  6.  All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dullCopyright 1984-1996 Claris Corporation
  7.  and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. All work and no play makes Jack a dull boy. 
  8. HBAM3016AUG95@
  9. Sunday
  10. Monday
  11. Tuesday
  12.     Wednesday
  13. Thursday
  14. Friday
  15. Saturday
  16. January
  17. February
  18. March
  19. April
  20. August
  21.     September
  22. October
  23. November
  24. December
  25. 1st Quarter
  26. 2nd Quarter
  27. 3rd Quarter
  28. 4th Quarter
  29. chart
  30. 8/7/97
  31. CONSTANT
  32. GRAPHICS
  33. LABELS
  34. LABELSINDICATOR
  35. LOTSACRS
  36. VBar Chart
  37. Instructions Mac
  38. Instructions PC
  39. VBar ChartB
  40. LOTSAUNDERSCORES
  41. MAXVALUE
  42. MINVALUE
  43. W    SCALEAUTO
  44. SCALEMANUAL
  45. SCALEMAX
  46. SCALEMIN
  47. SOLIDCHECK
  48. ]    VARIABLE1
  49.     VARIABLE2
  50.         VARIABLE3
  51.     VARIABLE4
  52.     VARIABLE5
  53.     VARIABLE6
  54. VBAR1
  55. VBAR2
  56. VBAR3
  57. VBAR4
  58. VBAR5
  59. VBAR6
  60. VLABEL1
  61. VLABEL2
  62. VLABEL3
  63. VLABEL4
  64. VLABEL5
  65. VLABEL6
  66. A    Variable1B
  67.     A    Variable2B
  68. A    Variable3B
  69. A    Variable4B
  70. A    Variable5B
  71. A    Variable6B
  72. MaxValueB
  73. VBar1B
  74. ) / (
  75.  * 123)
  76. VBar2B
  77. ) / (
  78.  * 123)
  79. VBar3B
  80. ) / (
  81.  * 123)
  82. VBar4B
  83. ) / (
  84.  * 123)
  85. VBar5B
  86. ) / (
  87.  * 123)
  88. VBar6B
  89. ) / (
  90.  * 123)
  91. ScaleManualB
  92. ScaleMaxB
  93. ScaleMinB
  94. A    ScaleAutoB
  95. GraphicsB
  96. VLabel1B
  97. p = "yes"
  98. ) / (
  99.  * 123)
  100. VLabel2B
  101. p = "yes"
  102. ) / (
  103.  * 123)
  104. VLabel3B
  105. p = "yes"
  106. ) / (
  107.  * 123)
  108. VLabel4B
  109. p = "yes"
  110. ) / (
  111.  * 123)
  112. VLabel5B
  113. p = "yes"
  114. ) / (
  115.  * 123)
  116. VLabel6B
  117. p = "yes"
  118. ) / (
  119.  * 123)
  120. MinValueB
  121. LotsaCRsB
  122. SolidCheckB
  123. LotsaUnderscoresB
  124. LabelsB
  125. LabelsIndicatorB
  126. p = "yes"
  127. ConstantB
  128. Instructions MacB
  129. Instructions PCB
  130. Vertical Bar Chart
  131. Vertical Bar Chart
  132. Vertical Bar Chart
  133. Vertical Bar Chart
  134. General:
  135. Everything in this file is stored in a single record.  No globals, relations, or scripts are used in any of the demo files, allowing all the calculations to remain stored and indexable.  This gives you the greatest flexibility for incorporating it into your own solutions.
  136. Fields:
  137. Constant    A calculation, always 1, for use as a relational key if you decide to link to this file via a relation.          Set up another field of 1 in your main file, and you can set the Variable fields usin
  138. g this relation.
  139. Graphics    This container field
  140. s repetitions hold the graphics for the checkboxes and radio buttons.
  141. VBar1...6    A calculated text field which forms each vertical bar.  Here is the calc for VBar1:
  142.     Left(LotsaUnderscores,
  143.     If(ScaleAuto = GetRepetition(Graphics, 1),
  144.     Variable1 / MaxValue,
  145.     (Variable1 - ScaleMin) / (ScaleMax - ScaleMin))
  146.      * 123)
  147.         123 underscore characters, set on successive lines when line spacing is set to 1 pixel, will form a         vertical bar that goes all
  148.  the way up to the top of the chart, so 123 is used as a multiplier for             whatever percentage of the maximum each bar should be.  If automatic scaling is turned on (line 2),         this percentage is simply Variable1/MaxValue.  Otherwise, manual scaling has been selected and the         expression in line 4 computes the correct percentage.  Last, the number of underscore characters         determined by this percentage of 123 is extracted from the LotsaUnderscores field (line 1).
  149. VLabel1...6    If value lab
  150. els are set to display, this calculated text field contains the same number of 1-pixel         carriage returns as the HBar fields contain bar characters, followed by a couple extra carriage         returns, plus the digits of the value.  If value labels are turned off it simply contains nothing.
  151. Labels        A text field containing either yes or no, which determines whether the value label fields will contain         a value to be displayed at the top of each bar.
  152. LabelsIndicator    A calculated container field,
  153.  containing a checked box when Labels = 
  154.  and an unchecked box         when it equals 
  155. LotsaUnderscores:  This is a text field containing a few hundred underscore characters, of which a certain number         are taken and placed on top of each other to form each vertical bar.
  156. LotsaCRs    Ditto, except these are just a bunch of carriage returns, used to space the value labels up away         from the bottom edge of the chart.
  157. MaxValue    This calculation uses the Max() aggregate function to determine 
  158. the highest variable used.  The             purpose of this is for the automatic scaling to be able to determine which value should stretch all the         way up to the top of the chart.
  159. ScaleAuto    A container containing a checked radio button when automatic scaling is to be used.
  160. ScaleManual    A container containing a checked radio button when manual scaling is to be used.
  161. ScaleMax    The maximum value set by the user when manual scaling is selected.
  162. ScaleMin    The minimum value set by the user when manual
  163.  scaling is selected.
  164. Variable1...6    These are the values for each bar, which you must set with your data.  You can use the Set Field         command, a script, a relation, or whatever you want.  To use more than six bars, simply add more         Number fields and name them Variable7, Variable8, etc.
  165. Layout:
  166. Each VBar text field must be bolded and have line spacing set to 1 pixel in the paragraph options, and the right font and size must be selected, to eliminate space between the underscore charact
  167. ers and make them appear to be a solid bar.  The text color determines the color of the bar.  In this file, each VBar field was duplicated to appear three times on the layout; one with a darker text color a couple pixels lower and to the right of the frontmost field, and one with a dark gray text color a little further away.  This provides the snazzy 3D plus dropshadow effect.
  168. The VLabel field needs only to be placed right on top of the frontmost VBar field.
  169. Resizing:
  170. The bar gr
  171. Zaphs are easily resized.  To scale them vertically, all you need do is change the 123 constant in the VBar and VLabel fields.  To scale them horizontally, just change the font size of the VBar fields.  The line height will remain at 1 pixel, but it will spread horizontally according to the width of the underscore character in the new font size.
  172. 32O.______________________________________________P{___________________________________________________________________________________________________________________________Q9_________________________________________________________RL____________________________________________________________________________S
  173. ___________T*__________________________________________V
  174. Vertical Bar Chart
  175. Vertical Bar Chart
  176. Vertical Bar Chart
  177. Vertical Bar Chart
  178. General:
  179. Everything in this file is stored in a single record.  No globals, relations, or scripts are used in any of the demo files, allowing all the calculations to remain stored and indexable.  This gives you the greatest flexibility for incorporating it into your own solutions.
  180. Fields:
  181. Constant    A calculation, always 1, for use as a relational key if you decide to link to this file via a relation.          Set up another field of 1 in your main file, and you can set the Variable fields usin
  182. g this relation.
  183. Graphics    This container field
  184. s repetitions hold the graphics for the checkboxes and radio buttons.
  185. VBar1...6    A calculated text field which forms each vertical bar.  Here is the calc for VBar1:
  186.     Left(LotsaUnderscores,
  187.     If(ScaleAuto = GetRepetition(Graphics, 1),
  188.     Variable1 / MaxValue,
  189.     (Variable1 - ScaleMin) / (ScaleMax - ScaleMin))
  190.      * 123)
  191.         123 underscore characters, set on successive lines when line spacing is set to 1 pixel, will form         a vertical bar that goes all
  192.  the way up to the top of the chart, so 123 is used as a multiplier for         whatever percentage of the maximum each bar should be.  If automatic scaling is turned on (line         2), this percentage is simply Variable1/MaxValue.  Otherwise, manual scaling has been selected         and the expression in line 4 computes the correct percentage.  Last, the number of underscore         characters determined by this percentage of 123 is extracted from the LotsaUnderscores field         (line 1).
  193. VLabel1...6    If value la
  194. bels are set to display, this calculated text field contains the same number of 1-pixel         carriage returns as the HBar fields contain bar characters, followed by a couple extra carriage         returns, plus the digits of the value.  If value labels are turned off it simply contains nothing.
  195. Labels        A text field containing either yes or no, which determines whether the value label fields will             contain a value to be displayed at the top of each bar.
  196. LabelsIndicator:  A calculated container fi
  197. eld, containing a checked box when Labels = "yes" and an             unchecked box when it equals "no."
  198. LotsaUnderscores:  This is a text field containing a few hundred underscore characters, of which a certain             number are taken and placed on top of each other to form each vertical bar.
  199. LotsaCRs    Ditto, except these are just a bunch of carriage returns, used to space the value labels up away         from the bottom edge of the chart.
  200. MaxValue    This calculation uses the Max() aggregate function to dete
  201. rmine the highest variable used.  The         purpose of this is for the automatic scaling to be able to determine which value should stretch all         the way up to the top of the chart.
  202. ScaleAuto    A container containing a checked radio button when automatic scaling is to be used.
  203. ScaleManual    A container containing a checked radio button when manual scaling is to be used.
  204. ScaleMax    The maximum value set by the user when manual scaling is selected.
  205. ScaleMin    The minimum value set by the user when m
  206. anual scaling is selected.
  207. Variable1...6    These are the values for each bar, which you must set with your data.  You can use the Set         Field command, a script, a relation, or whatever you want.  To use more than six bars, simply         add more Number fields and name them Variable7, Variable8, etc.
  208. Layout:
  209. Each VBar text field must be bolded and have line spacing set to 1 pixel in the paragraph options, and the right font and size must be selected, to eliminate space between the underscore ch
  210. aracters and make them appear to be a solid bar.  The text color determines the color of the bar.  In this file, each VBar field was duplicated to appear three times on the layout; one with a darker text color a couple pixels lower and to the right of the frontmost field, and one with a dark gray text color a little further away.  This provides the snazzy 3D plus dropshadow effect.
  211. The VLabel field needs only to be placed right on top of the frontmost VBar field.
  212. Resizing:
  213. The ba
  214. ^r graphs are easily resized.  To scale them vertically, all you need do is change the 123 constant in the VBar and VLabel fields.  To scale them horizontally, just change the font size of the VBar fields.  The line height will remain at 1 pixel, but it will spread horizontally according to the width of the underscore character in the new font size.
  215. ______________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________B
  216. ______
  217. Startup
  218. Unlockit
  219.     Closedown
  220. -----
  221. Check for Registration
  222. About
  223. -----
  224. Toggle Auto Scale
  225. Toggle Manual Scale
  226. Toggle Value Labels
  227. -----
  228. Scatter
  229. Toggle Manual Scale
  230. Toggle Value Labels
  231. p = "yes"
  232.  "no"
  233.  "yes")
  234. Check for Registration
  235. Unlockit
  236. -----
  237. -----
  238. -----
  239. Scatter
  240. Startup
  241. A    Closedown
  242. About
  243. Freeze
  244.  = "yes"
  245. ) = 1    
  246.     Helvetica
  247. Geneva
  248. Chicago
  249. ITFCopperplate
  250.     Espy Sans
  251. Courier
  252. New York
  253. Times
  254. Arial
  255. B Garamond Bold
  256. Times New Roman
  257. Helvetica Black
  258. Impact
  259. Arial Black
  260. Tekton Bold
  261. Charcoal
  262. Palatino BoldOsF
  263. LB Helvetica Black
  264. CB Helvetica Condensed Bold
  265. CLB Helvetica Condensed Black
  266. L Helvetica Light
  267. MS Sans Serif
  268. Courier New
  269. E`E`^
  270. F1F1Ns
  271. NsNs!
  272. o{o{V
  273. o{o{F1
  274. )Jo{w
  275. o{o{^
  276. o{o{^
  277. o{o{^
  278. o{o{^
  279. g9g91
  280. )Jg91
  281. g9g95
  282. g9g9F1
  283. JRg9F1
  284. JRJRR
  285. g9g9Z
  286. JRJRR
  287. )Jg9R
  288. !g9g9
  289. g9g95
  290. JRg91
  291. F1g91
  292. )Jg9g9F1
  293. g9g91
  294. !g9g91
  295. g9g95
  296. JRJRR
  297. JRJRR
  298. !g9g9Z
  299. JRJRR
  300. g9g9R
  301. !g9g9
  302. JRJRR
  303. g9g91
  304. )Jg9Z
  305. g9g9F1
  306. cg9g9
  307. g9g9F1
  308. g9g9c
  309. JRJRR
  310. JRJRR
  311. JRJRR
  312. g9g9=
  313. F1g9g9
  314. g9RG:
  315. ffffff
  316. ffff33
  317. ff33ff
  318. ff3333
  319. 33ffff
  320. 33ff33
  321. 333333
  322. wwwwww
  323. UUUUUU
  324. DDDDDD
  325. """"""
  326. ffffff
  327. ffff33
  328. ff33ff
  329. ff3333
  330. 33ffff
  331. 33ff33
  332. 333333
  333. wwwwww
  334. UUUUUU
  335. DDDDDD
  336. """"""
  337. ffffff
  338. ffff33
  339. ff33ff
  340. ff3333
  341. 33ffff
  342. 33ff33
  343. 333333
  344. wwwwww
  345. UUUUUU
  346. DDDDDD
  347. """"""
  348. ffffff
  349. ffff33
  350. ff33ff
  351. ff3333
  352. 33ffff
  353. 33ff33
  354. 333333
  355. wwwwww
  356. UUUUUU
  357. DDDDDD
  358. """"""
  359. ffffff
  360. ffff33
  361. ff33ff
  362. ff3333
  363. 33ffff
  364. 33ff33
  365. 333333
  366. wwwwww
  367. UUUUUU
  368. DDDDDD
  369. """"""
  370. LOTSAUNDERSCORES
  371. FPTH@
  372. FPTHA
  373. NAME@
  374. alisA
  375. alisA
  376. alisA
  377. alisA
  378. alisA
  379. alisA
  380. alisA
  381. alisA
  382. alisA
  383. alisA
  384. alisA
  385. alisA
  386. ffffff
  387. ffff33
  388. ff33ff
  389. ff3333
  390. 33ffff
  391. 33ff33
  392. 333333
  393. wwwwww
  394. UUUUUU
  395. DDDDDD
  396. """"""
  397. ffffff
  398. ffff33
  399. ff33ff
  400. ff3333
  401. 33ffff
  402. 33ff33
  403. 333333
  404. wwwwww
  405. UUUUUU
  406. DDDDDD
  407. """"""
  408. ffffff
  409. ffff33
  410. ff33ff
  411. ff3333
  412. 33ffff
  413. 33ff33
  414. 333333
  415. wwwwww
  416. UUUUUU
  417. DDDDDD
  418. """"""
  419. wRPTH
  420. *NAME
  421. rtMaker Pro 1.1:CMPLINE.FP3
  422. MSPCA
  423. NAMEA
  424. CMPLINE.FP3
  425. RPTHA
  426. CMPLINE.FP3
  427. MacBrian
  428. CMPLINE.FP3
  429. FMP3FMP3
  430. ChartMaker Pro 1.1
  431. wMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPLINE.FP3
  432. MacBrian
  433. MacBrian
  434. Brian
  435. MacBrian
  436. ^RPTH
  437. FPTHPC
  438. ffffff
  439. ffff33
  440. ff33ff
  441. ff3333
  442. 33ffff
  443. 33ff33
  444. 333333
  445. wwwwww
  446. UUUUUU
  447. DDDDDD
  448. """"""
  449. _RPTH
  450. FPTHA_MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:Charting Demo:ChartMaker:ChartMaker HBar.fp3
  451. MSPCA
  452. NAMEA
  453. ChartMaker HBar.fp3
  454. RPTHA
  455. ChartMaker HBar.fp3
  456. MacBrian
  457. ChartMaker HBar.fp3
  458. FMP3FMP3
  459. ChartMaker
  460. _MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:Charting Demo:ChartMaker:ChartMaker HBar.fp3
  461. MacBrian
  462. MacBrian
  463. Brian
  464. MacBrian
  465. bRPTH
  466. FPTHAbMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:Charting Demo:ChartMaker:ChartMaker Scatter.fp3
  467. MSPCA
  468. FPTHA^MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:Charting Demo:ChartMaker:ChartMaker Pie.fp3
  469. MSPCA
  470. NAMEA
  471. ChartMaker Pie.fp3
  472. RPTHA
  473. ChartMaker Pie.fp3
  474. MacBrian
  475. ChartMaker Pie.fp3
  476. FMP3FMP3
  477. ChartMaker
  478. ^MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:Charting Demo:ChartMaker:ChartMaker Pie.fp3
  479. MacBrian
  480. MacBrian
  481. Brian
  482. MacBrian
  483. FMRLA
  484. Register
  485. NAMEA
  486. ChartMaker Scatter.fp3
  487. RPTHA
  488. ChartMaker Scatter.fp3
  489. MacBrian
  490. ChartMaker Scatter.fp3
  491. FMP3FMP3
  492. ChartMaker
  493. bMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:Charting Demo:ChartMaker:ChartMaker Scatter.fp3
  494. MacBrian
  495. MacBrian
  496. Brian
  497. MacBrian
  498. wRPTH
  499. *NAME
  500. FPTHAwMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPMBAR.FP3
  501. MSPCA
  502. NAMEA
  503. CMPMBAR.FP3
  504. RPTHA
  505. CMPMBAR.FP3
  506. aRPTH
  507. FPTHAaMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  508. :ChartMaker Pro
  509. MSPCA
  510. NAMEA
  511. ChartMaker Pro
  512. RPTHA
  513. ChartMaker Pro
  514. alisemo:ChartMaker:ChartMaker MBar.fp3
  515. MacBrian
  516. MacBrian
  517. Brian
  518. MacBrian
  519. aRPTH
  520. FPTHAaMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  521. :ChartMaker Pro
  522. MSPCA
  523. NAMEA
  524. ChartMaker Pro
  525. RPTHA
  526. ChartMaker Pro
  527. MacBrian
  528. ChartMaker Pro
  529. 6FMP3FMP3
  530. ChartMaker Pro
  531. aMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  532. :ChartMaker Pro
  533. MacBrian
  534. MacBrian
  535. Brian
  536. MacBrian
  537. aRPTH
  538. FPTHAaMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  539. :ChartMaker Pro
  540. MSPCA
  541. NAMEA
  542. ChartMaker Pro
  543. RPTHA
  544. ChartMaker Pro
  545. MacBrian
  546. ChartMaker Pro
  547. 6FMP3FMP3
  548. ChartMaker Pro
  549. aMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  550. :ChartMaker Pro
  551. MacBrian
  552. MacBrian
  553. Brian
  554. MacBrian
  555. ^RPTH
  556. FPTHA^MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  557. :Register.fp3
  558. MSPCA
  559. NAMEA
  560. Register.fp3
  561. RPTHA
  562. Register.fp3
  563. MacBrian
  564. Register.fp3
  565. FMP3FMP3
  566. ChartMaker Pro
  567. ^MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  568. :Register.fp3
  569. MacBrian
  570. MacBrian
  571. Brian
  572. MacBrian
  573. ^RPTH
  574. FPTHA^MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  575. :Register.fp3
  576. MSPCA
  577. NAMEA
  578. Register.fp3
  579. RPTHA
  580. Register.fp3
  581. MacBrian
  582. Register.fp3
  583. FMP3FMP3
  584. ChartMaker Pro
  585. ^MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  586. :Register.fp3
  587. MacBrian
  588. MacBrian
  589. Brian
  590. MacBrian
  591. ^RPTH
  592. FPTHA^MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  593. :Register.fp3
  594. MSPCA
  595. NAMEA
  596. Register.fp3
  597. RPTHA
  598. Register.fp3
  599. MacBrian
  600. Register.fp3
  601. FMP3FMP3
  602. ChartMaker Pro
  603. ^MacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:ChartMaker Pro
  604. :Register.fp3
  605. MacBrian
  606. MacBrian
  607. Brian
  608. MacBrian
  609. zRPTH
  610. (NAME
  611. FPTHAzMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro:ChartMaker Pro.fp3
  612. MSPCA
  613. NAMEA
  614. ChartMaker Pro.fp3
  615. RPTHA
  616. ChartMaker Pro.fp3
  617. MacBrian
  618. ChartMaker Pro.fp3
  619. 6FMP3FMP3
  620. ChartMaker Pro
  621. zMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro:ChartMaker Pro.fp3
  622. MacBrian
  623. MacBrian
  624. Brian
  625. MacBrian
  626. xRPTH
  627. *NAME
  628. FPTHAxMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CHARTMKR.FP3
  629. MSPCA
  630. NAMEA
  631. CHARTMKR.FP3
  632. RPTHA
  633. CHARTMKR.FP3
  634. FPTHAwMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPLINE.FP3
  635. MSPCA
  636. NAMEA
  637. CMPLINE.FP3
  638. RPTHA
  639. CMPLINE.FP3
  640. MacBrian
  641. CMPLINE.FP3
  642. FMP3FMP3
  643. ChartMaker Pro 1.1
  644. wMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPLINE.FP3
  645. MacBrian
  646. MacBrian
  647. Brian
  648. MacBrian
  649. ^RPTH
  650. Toggle Auto Scale
  651. Toggle Manual Scale
  652. Toggle Value Labels
  653. p = "yes"
  654.  "no"
  655.  "yes")
  656. Check for Registration
  657.  = "yes"
  658. ) = 1    
  659. Pro 3.0F!
  660. MacBrian
  661. CMPMBAR.FP3
  662. FMP3FMP3
  663. ChartMaker Pro 1.1
  664. wMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPMBAR.FP3
  665. MacBrian
  666. MacBrian
  667. Brian
  668. MacBrian
  669. MacBrian
  670. CHARTMKR.FP3
  671. 6FMP3FMP3
  672. ChartMaker Pro 1.1
  673. xMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CHARTMKR.FP3
  674. MacBrian
  675. MacBrian
  676. Brian
  677. MacBrian
  678. xRPTH
  679. *NAME
  680. FPTHAxMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:REGISTER.FP3
  681. MSPCA
  682. NAMEA
  683. REGISTER.FP3
  684. RPTHA
  685. REGISTER.FP3
  686. MacBrian
  687. REGISTER.FP3
  688. FMP3FMP3
  689. ChartMaker Pro 1.1
  690. xMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:REGISTER.FP3
  691. MacBrian
  692. MacBrian
  693. Brian
  694. MacBrian
  695. vRPTH
  696. (NAME
  697. FPTHAvMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPPIE.FP3
  698. MSPCA
  699. NAMEA
  700. CMPPIE.FP3
  701. RPTHA
  702. CMPPIE.FP3
  703. MacBrian
  704. CMPPIE.FP3
  705. FMP3FMP3
  706. ChartMaker Pro 1.1
  707. vMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPPIE.FP3
  708. MacBrian
  709. MacBrian
  710. Brian
  711. MacBrian
  712. wRPTH
  713. *NAME
  714. FPTHAwMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPHBAR.FP3
  715. MSPCA
  716. NAMEA
  717. CMPHBAR.FP3
  718. RPTHA
  719. CMPHBAR.FP3
  720. MacBrian
  721. CMPHBAR.FP3
  722. FMP3FMP3
  723. ChartMaker Pro 1.1
  724. wMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPHBAR.FP3
  725. MacBrian
  726. MacBrian
  727. Brian
  728. MacBrian
  729. wRPTH
  730. *NAME
  731. FPTHAwMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPSCAT.FP3
  732. MSPCA
  733. NAMEA
  734. CMPSCAT.FP3
  735. RPTHA
  736. CMPSCAT.FP3
  737. MacBrian
  738. CMPSCAT.FP3
  739. FMP3FMP3
  740. ChartMaker Pro 1.1
  741. wMacBrian:Desktop Folder:ADS Projects:BRIAN'S DEMOS:ChartMaker Pro:CMP Versions:Shareware:ChartMaker Pro 1.1:CMPSCAT.FP3
  742. MacBrian
  743. MacBrian
  744. Brian
  745. MacBrian
  746. CMPVBAR.FP3
  747. PartSIT!
  748. PartSIT!
  749. 2=PaQD
  750. ]w >"]
  751. Qi sD
  752. ffff`
  753. ffff`
  754. ffff`
  755. ffff`
  756. wwfww
  757. wwf3fwwq
  758. 30fgww`
  759. 2icl8
  760. >icl4
  761. Jics#
  762. Vics8
  763. bics4
  764.