home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / Chip_1998-03_cd.bin / tema / MINICAD / MC7DEMO / MINICAD.1 / INVENTRY.MPC < prev    next >
Text File  |  1997-04-30  |  539b  |  24 lines

  1. PenSize(1);
  2. PenPat(2);
  3. FillPat(1);
  4. FillFore(255);
  5. FillBack(0);
  6. PenFore(255);
  7. PenBack(0);
  8. TextFont(1);
  9. TextSize(10);
  10. NameObject('Inventory');
  11. SprdSheet(0",0",3,3);
  12. SprdWidth(12);
  13. LoadCell(1,1,'Type');
  14. SprdWidth(15);
  15. LoadCell(1,2,'Wattage');
  16. SprdWidth(7);
  17. LoadCell(1,3,'Count');
  18. LoadCell(2,0,'=DATABASE(R IN [''Instruments''])');
  19. LoadCell(2,1,'=(Instruments.Type)');
  20. LoadCell(2,2,'=(Instruments.Lamp)');
  21. LoadCell(2,3,'=1');
  22. LoadCell(3,2,'Total Number of Instruments:');
  23. LoadCell(3,3,'=COUNT(R IN [''Instruments''])');
  24.