home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l410 / 1.ddi / STFSETUP.IN_ / STFSETUP.bin
Encoding:
INI File  |  1992-02-13  |  30.1 KB  |  916 lines

  1. [Shell Commands]
  2.  
  3.     set-title  "Microsoft Professional Toolkit Setup Loading ..."
  4.     read-syms  "General Variables"
  5.     detect     "Detect Variables"
  6.  
  7.     ifstr $(WinPath) == ""
  8.         read-syms "No Windows Path"
  9.         goto "exit-1"
  10.     endif
  11.  
  12.     set-title "Microsoft Professional Toolkit Setup"
  13.  
  14. welcome = +
  15.     read-syms  "Welcome Variables"
  16.     ui  start  INFO3
  17.  
  18.     ifstr $(DLGEVENT) == "CONTINUE"
  19.         ui pop 1
  20.         set SDir = $(STF_SRCDIR)
  21.         goto "Dest-Main-init"
  22.     else  ;;  $(DLGEVENT) == "EXIT"
  23.         set  CurrentDialog = "welcome"
  24.         goto "quit"
  25.     endif
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32. Dest-Main-init = +
  33.     read-syms "Manditory Path Variables"
  34.  
  35. Dest-Main = +
  36.     set EditTextIn = $(DESTMAIN)
  37.     set EditFocus  = "END"
  38.     ui  start GETPATH
  39.     set  DESTMAIN  = $(EditPathOut)
  40.  
  41.     ifstr $(DLGEVENT) == "CONTINUE"
  42.         ui pop 1
  43.         goto "Select-id-init"
  44.     else  ;;  $(DLGEVENT) == "EXIT"
  45.         ui pop 1
  46.         set  CurrentDialog = "get-dest"
  47.         goto "quit"
  48.     endif
  49.  
  50.  
  51.  
  52.  
  53.  
  54. Select-id-init = +
  55.     read-syms       "Select Group Variables"
  56.  
  57. Select-Group = +
  58.     set CheckItemsIn = $(GroupsSelected)
  59.     set-subst HelpText1 = "Select the component groups you would\n
  60.         like to install at this time.\n\n
  61.         The item 'CDK' refers to the Custom Control\n
  62.         Development Kit.\n\n"
  63.  
  64.     ui start CHECK6
  65.     set GroupsSelected = $(CheckItemsOut)
  66.     set Select-Group = $(CheckItemsOut)
  67.  
  68.     ifstr $(DLGEVENT) == "CONTINUE"
  69.         ui pop 1
  70.         goto "Dest-group1"
  71.     else-ifstr  $(DLGEVENT) == "BACK"
  72.         ui pop 1
  73.         goto "Dest-Main-init"
  74.     else       ;; $(DLGEVENT) == "EXIT"
  75.         ui pop 1
  76.         set CurrentDialog = "Select-Group"
  77.         goto "quit"
  78.     endif
  79.  
  80.  
  81.  
  82.  
  83.  
  84. Dest-group1 = +
  85.     IfContains "ON" IN $(GroupsSelected)
  86.         set Group1 = *($(GroupsSelected),1)
  87.         set Group2 = *($(GroupsSelected),2)
  88.         set Group3 = *($(GroupsSelected),3)
  89.         set Group4 = *($(GroupsSelected),4)
  90.         set Group5 = *($(GroupsSelected),5)
  91.         set Group6 = *($(GroupsSelected),6)
  92.         goto "Dupe-vbx-init"
  93.     else
  94.         read-syms "Must Choose Variables"
  95.         ui start INFO2
  96.         ui pop 1
  97.         ifstr $(DLGEVENT) == "EXIT"
  98.             goto "exit"
  99.         else  ;;  $(DLGEVENT) == "CONTINUE"
  100.             goto "Select-id-init"
  101.         endif
  102.     Endif
  103.  
  104.  
  105. Dupe-vbx-init = +
  106.     ifstr $(Group4) != "ON"
  107.         set DupeSetup = "NO"
  108.         goto "inst"
  109.     endif
  110.  
  111.     set InfoTitle  = "Microsoft Professional Toolkit"
  112.     set-subst InfoText1 = "Setup will copy files for the 21 Toolkit Controls into the Microsoft Windows\SYSTEM directory.  If you want duplicate copies of these files in the "$(DESTMAIN)"VBX directory, select Yes.  It requires approximately 1 megabyte." 
  113.     set-subst HelpText1  = "The Toolkit Control files will be installed in your Microsoft Windows\\SYSTEM directory since more than one application can use custom control files at the same time.\n
  114.                 To make it easier to work with these files, a duplicate copy can be installed in the "$(DESTMAIN)"VBX directory.\n"
  115.     set-subst STF_BACK_ENABLED = "YES"
  116.  
  117. Dupe = +
  118.     Set ContBut    = "&Yes"
  119.     Set BackBut    = "&No"
  120.     ui start INFO3
  121.     ui pop 1
  122.     Set ContBut    = "&Continue"
  123.     Set BackBut    = "&Back"
  124.     
  125.     ifstr $(DLGEVENT) == "CONTINUE"
  126.         set DupeSetup = "YES"
  127.         goto "inst"
  128.     else-ifstr $(DLGEVENT) == "BACK"
  129.         set DupeSetup = "NO"
  130.         goto "inst"
  131.     else
  132.         goto "quit"
  133.     endif
  134.                    
  135.  
  136.  
  137. inst =  +
  138.  
  139.     read-syms "Copying Files"
  140.     ui start MODELESS
  141.     install  "Install Initialization"
  142.  
  143.     ifstr $(STF_INSTALL_OUTCOME) == "STF_SUCCESS"
  144.         goto "inst-step2"
  145.     else-ifstr $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
  146.         goto quit
  147.     else   ;;  $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
  148.         read-syms  "Exit-Failure Install Step1"
  149.         goto exit-1
  150.     endif
  151.  
  152.  
  153. inst-step2 = +
  154.     install  "Install Script Preparation"
  155.     ui pop 1
  156.  
  157.     ifstr      $(STF_INSTALL_OUTCOME) == "STF_SUCCESS"
  158.         goto "inst-step3"
  159.     else-ifstr $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
  160.         goto quit
  161.     else   ;;  $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
  162.         read-syms  "Exit-Failure Install Step2"
  163.         goto exit-1
  164.     endif
  165.  
  166.  
  167.  
  168.  
  169.  
  170. inst-step3 =    install  "TestDiskSpace"
  171.     ifstr $(SpaceProblem) == "YES"
  172.         read-syms "Space Problem Variables"             
  173.         set Drive = *(*($(TroublePairs),1),1)
  174.         Set Space = *(*($(TroublePairs),1),2)
  175.         set-subsym InfoText1 = "Drive $(Drive) has insufficient space.  An estimated $(Space) bytes are additionally required.\n
  176.                                 This estimate is based on a cluster size of 4k.  Hard drives with smaller clusters are more efficient.\n
  177.                                 Select <Continue> to attempt installation, or <Back> to change install options.\n"
  178.  
  179.         set-subst InfoText1 = $(InfoText1)
  180.         ui  start  INFO3
  181.         
  182.         ifstr      $(DLGEVENT) == "CONTINUE"
  183.             ui pop 1
  184.         else-ifstr $(DLGEVENT) == "BACK"
  185.             ui pop 1
  186.             goto Select-id-init
  187.         else ;;  $(DLGEVENT) == "EXIT"
  188.             ui pop 1        
  189.             goto quit
  190.         endif
  191.     endif
  192.     
  193.     install "Copy Files"
  194.  
  195.     ifstr $(STF_INSTALL_OUTCOME) == "STF_SUCCESS"
  196.         read-syms  "Exit-Success Message Variables"
  197.         goto exit-1
  198.     else-ifstr $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
  199.         goto quit
  200.     else   ;;  $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
  201.         read-syms  "Exit-Failure Install Step3"
  202.         goto exit-1
  203.     endif
  204.  
  205.  
  206.  
  207.  
  208.  
  209. quit = +
  210.     read-syms  "Exit-UserQuit Message Variables"
  211.  
  212. exit-1 = ui start INFO1
  213.     ui pop 1
  214.     exit
  215.  
  216.  
  217.  
  218.  
  219.  
  220. [Source Media Descriptions]
  221.     1 = "Microsoft Professional Toolkit Disk 1", TAGFILE = README2.TXT
  222.     2 = "Microsoft Professional Toolkit Disk 2", TAGFILE = WINAPI\APIXREF.HL$
  223.     3 = "Microsoft Professional Toolkit Disk 3", TAGFILE = WINAPI\WINSDK.HL$
  224.  
  225. [Copy Files]
  226.     CopyFilesInCopyList
  227.     ClearCopyList
  228.  
  229.     CreateProgManGroup "VB Professional Toolkit","VBPRO.GRP"
  230.     ShowProgManGroup "VB Professional Toolkit",1
  231.     
  232.     CreateProgManItem "VB Professional Toolkit" "Toolkit Readme" "Notepad.exe "$(DESTMAIN)"README2.TXT"
  233.     CreateProgManItem "VB Professional Toolkit" "Packing List" "Notepad.exe "$(DESTMAIN)"PACKING.LST"
  234.  
  235.     ifstr $(Group4) == "ON"
  236.         CreateProgManItem "VB Professional Toolkit" "Toolkit Demo" $(DESTMAIN)"DEMO.EXE"
  237.         CreateProgManItem "VB Professional Toolkit" "Control Ref" "Winhelp "$(DESTMAIN)"CTRLREF.HLP"
  238.         CreateProgManItem "VB Professional Toolkit" "Setup Kit Ref" "Winhelp "$(DESTMAIN)"SETUPKIT\SETUPKIT.HLP"
  239.     endif
  240.  
  241.     ifstr $(Group1) == "ON"
  242.         CreateProgManItem "VB Professional Toolkit" "CDK API Ref" "Winhelp "$(DESTMAIN)"CDK\VBAPI.HLP"
  243.     endif
  244.  
  245.     ifstr $(Group3) == "ON"
  246.         CreateProgManItem "VB Professional Toolkit" "Win SDK Help" "Winhelp "$(DESTMAIN)"WINAPI\WINSDK.HLP"
  247.         CreateProgManItem "VB Professional Toolkit" "Win API X-Ref" "Winhelp "$(DESTMAIN)"WINAPI\APIXREF.HLP"
  248.     endif
  249.  
  250.     ifstr $(Group6) == "ON"
  251.         CreateProgManItem "VB Professional Toolkit" "VB Knowledge Base" "Winhelp "$(DESTMAIN)"VBKNOWLG.HLP"
  252.     endif
  253.  
  254.     Exit
  255.  
  256. [Install Initialization]
  257.     set STF_COPY         = "Yes"    ;;; or "" for NO
  258.     set STF_DECOMPRESS   = "Yes"    ;;; or "" for NO
  259.     set STF_VITAL        = "Yes"    ;;; or "" for NO  
  260.     set STF_ROOT         = ""       ;;; or "Yes" for YES
  261.     set STF_SETTIMESTAMP = ""       ;;; or "" for NO
  262.     set STF_VERSION      = ""
  263.     set STF_DATE         = "1992-01-01"
  264.     set STF_RENAME       = ""
  265.     set STF_APPEND       = ""
  266.     set STF_BACKUP       = ""       ;;; or "*" for default name
  267.     set STF_OVERWRITE    = "ALWAYS"  ;;; or ALWAYS UNPROTECTED OLDER
  268.     exit
  269.  
  270. [Install Script Preparation]
  271.     clearCopyList
  272.     AddSectionFilesToCopyList  "d-main" $(SDir) $(DESTMAIN)
  273.  
  274.     ifstr $(Group1) == "ON"
  275.         AddSectionFilesToCopyList    "d-cdk" $(SDir)  $(DESTMAIN)
  276.     endif            
  277.     
  278.     ifstr $(Group2) == "ON"
  279.         AddSectionFilesToCopyList    "d-hc" $(SDir)   $(DESTMAIN)
  280.     endif
  281.     
  282.     ifstr $(Group3) == "ON"
  283.         AddSectionFilesToCopyList    "d-winapi" $(SDir)   $(DESTMAIN)
  284.     endif
  285.     
  286.     ifstr $(Group4) == "ON"
  287.         AddSectionFilesToCopyList    "d-winsys" $(SDir)  $(WinSysDir)
  288.         AddSectionFilesToCopyList    "d-gaugebmp" $(SDir) $(DESTMAIN)BITMAPS\GAUGE
  289.         AddSectionFilesToCopyList    "d-const" $(SDir)  $(DESTMAIN)
  290.         AddSectionFilesToCopyList    "d-demo" $(SDir)  $(DESTMAIN)
  291.         AddSectionFilesToCopyList    "d-ctrlref" $(SDir)  $(DESTMAIN)
  292.         AddSectionFilesToCopyList    "d-samples" $(SDir)  $(DESTMAIN)
  293.         
  294.         ifstr $(DupeSetup) == "YES" 
  295.             AddSectionFilesToCopyList    "d-winsys" $(SDir)  $(DESTMAIN)VBX
  296.         endif
  297.     endif
  298.     
  299.     ifstr $(Group5) == "ON"
  300.         AddSectionFilesToCopyList    "d-toolbar" $(SDir)  $(DESTMAIN)BITMAPS\TOOLBAR
  301.         AddSectionFilesToCopyList    "d-clipart1" $(SDir)  $(DESTMAIN)METAFILE\ARROWS
  302.         AddSectionFilesToCopyList    "d-clipart2" $(SDir)  $(DESTMAIN)METAFILE\BUSINESS
  303.     endif
  304.     
  305.     ifstr $(Group6) == "ON"
  306.         AddSectionFilesToCopyList    "d-knowledge" $(SDir)  $(DESTMAIN)
  307.     endif
  308.     exit
  309.  
  310.  
  311.  
  312.  
  313. [TestDiskSpace]
  314. ;   Check to make sure there is enough space for the copies
  315.  
  316.     SetupGetCopyListCost  Frees  Clusters  TotalFree
  317.     set ExtraCosts = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}
  318.     GetCopyListCost  AdditionalNeeded TotalFree TotalNeeded Frees Clusters +
  319.                      TroublePairs NeededPerDisk ExtraCosts
  320.  
  321.     ifstr *($(TroublePairs),1) == "" ;If no problem, then do the copy
  322.         set SpaceProblem = "NO"       ; communicates no problem was found
  323.     else
  324.         set SpaceProblem = "YES"      ; communicates a problem was found
  325.     endif
  326.     
  327.     exit
  328.  
  329. [General Variables]
  330.  
  331.     ContBut    = "&Continue"
  332.     ExitBut    = "E&xit"
  333.     BackBut    = "&Back"
  334.     HelpBut    = "&Help"
  335.     HelpTitle  = "Microsoft Professional Toolkit -- Help"
  336.     HContBut   = "&OK"
  337.     DupeSetup  = "NO"
  338.  
  339.     QuitTitle  = "Microsoft Professional Toolkit -- Quit Dialog"
  340.     QuitText1  = "\n
  341.                   The Setup process is not complete.  If you exit now,\n
  342.                   the Professional Toolkit will not be installed.\n\n
  343.                   You may run the Setup program at a later time to\n
  344.                   complete the installation of the Toolkit."
  345.     QContBut   = "&Resume"
  346.     QExitBut   = "E&xit"
  347.  
  348. ;
  349. ;       Default is ALL Groups selected
  350. ;
  351.     GroupsSelected      = {ON, ON, ON, ON, ON, ON}
  352.  
  353. ;
  354. ;       Default Destination Directories
  355. ;
  356.     DESTMAIN  = "C:\\VB"              ;; default for VB tree
  357.  
  358. [Detect Variables]
  359.     WinSysDir = "C:\WINDOWS\SYSTEM\" ? DETCMD.DLL GetWindowsSysDir
  360.     WinPath = "C:\WINDOWS\" ? DETCMD.DLL FindTargetOnEnvVar "WIN.INI" PATH
  361.  
  362. [Welcome Variables]
  363.     InfoTitle  = "Microsoft Professional Toolkit"
  364.     InfoText1  = "This is the Setup Program for the Microsoft Professional Toolkit for Visual Basic.\n
  365.                   \n
  366.                   The Toolkit is an extension to Visual Basic.\n
  367.                   Visual Basic must be set up separately.\n
  368.                   \n
  369.                   Full Toolkit installation requires approximately 8.5 megabytes.\n"
  370.                   
  371. ;                       
  372.     HelpText1  = "This program will install the many components\n
  373.                   of the Toolkit.  It assumes Visual Basic\n
  374.                   is already installed, or will be installed later.\n
  375.                   \n
  376.                   If you select Continue, this setup program will\n
  377.                   install the Toolkit files into the directory you\n
  378.                   specify.  If you do not want or need these files,\n
  379.                   then you should select Exit."
  380.  
  381.     STF_BACK_ENABLED = "NO"
  382.  
  383. [Copying Files]
  384.     ModelessText1 = " Microsoft Professional Toolkit Setup\n
  385.                      ======================================\n\n\n\n\n
  386.                      ....Files and Directories now being prepared...."
  387.  
  388. [Space Problem Variables]
  389.     InfoTitle  = "Setup Disk Space Problem Identified"
  390.  
  391.     HelpText1  = "There is probably insufficient space on the\n 
  392.                   disk(s) to complete the setup as you have\n 
  393.                   requested.  You should either delete files off\n
  394.                   your disks or change the file groups that you\n 
  395.                   wish to install."
  396.     STF_BACK_ENABLED = "YES"
  397.  
  398. [Must Choose Variables]
  399.     InfoTitle  = "Microsoft Professional Toolkit"
  400.  
  401.     InfoText1  = "\n
  402.                   You must choose at least one group of files to\n
  403.                   install.\n\n
  404.                   Press Continue to select at least one group."
  405.  
  406.     HelpText1  = "\nYou must choose at least one group of files to\n
  407.                   install.  If you do not want or need to install\n
  408.                   the Toolkit at this time then you should\n
  409.                   select Exit."
  410.     STF_BACK_ENABLED = "NO"
  411.  
  412. [Exit-Success Message Variables]
  413.     InfoTitle  = "Microsoft Professional Toolkit Setup Completed"
  414.     InfoText1  = "The Professional Toolkit has been\n
  415.             successfully installed!  If Visual Basic\n
  416.             has not been installed yet, please install it now.\n\n
  417.             See the Read-Me-First card for suggestions\n
  418.             on how to best get acquainted with your new\n
  419.             software."
  420.     ContBut    = "E&xit"
  421.     STF_BACK_ENABLED = "NO"
  422.  
  423. [Exit-UserQuit Message Variables]
  424.     InfoTitle  = "Setup Early Exit Message"
  425.     InfoText1  = "\n
  426.                   The Professional Toolkit has not been properly\n
  427.                   installed.  You should run the Setup\n
  428.                   program in its entirety at a later time to\n
  429.                   install the Professional Toolkit properly."
  430.     ContBut    = "E&xit"
  431.     STF_BACK_ENABLED = "NO"
  432.                                  
  433.  
  434. [No Windows Path]
  435.  
  436.     InfoTitle  = "No Windows In Path Error Message"
  437.     InfoText1  = "\n\n\n
  438.                   Setup failed find the Windows Directory\n
  439.                   in your PATH environment variable.  You\n
  440.                   must edit your AUTOEXEC.BAT file to\n
  441.                   include the Windows directory before\n
  442.                   you run SETUP."
  443.     ContBut    = "E&xit"
  444.     STF_BACK_ENABLED = "NO"
  445.  
  446.  
  447. [Exit-Failure Install Step1]
  448.  
  449.     InfoTitle  = "Directories Setup Error Message"
  450.     InfoText1  = "\n\n\n
  451.                   Setup failed while trying to create\n
  452.                   Directories on your destination drive.\n"
  453.     ContBut    = "E&xit"
  454.     STF_BACK_ENABLED = "NO"
  455.  
  456. [Exit-Failure Install Step2]
  457.     InfoTitle  = "Files Setup Error Message"
  458.     InfoText1  = "\n\n\n
  459.                   Setup failed while trying to find the \n
  460.                   files to be copied!\n\n"
  461.     ContBut    = "E&xit"
  462.     STF_BACK_ENABLED = "NO"
  463.  
  464. [Exit-Failure Install Step3]
  465.  
  466.     InfoTitle  = "File Copying Setup Error Message"
  467.     InfoText1  = "\n\n\n
  468.                   Setup failed while trying to copy\n
  469.                   files to the destination drive.\n"
  470.     ContBut    = "E&xit"
  471.     STF_BACK_ENABLED = "NO"
  472.  
  473.  
  474. [Exit-Failure Message Variables]
  475.  
  476.     InfoTitle  = "Setup Error Message"
  477.     InfoText1  = "\n\n\nSetup failed!\n\n"
  478.     ContBut    = "E&xit"
  479.     STF_BACK_ENABLED = "NO"
  480.  
  481.  
  482. [Select Group Variables]
  483.     ChkBoxTitle = "Select Groups of Files to Install"
  484.     CheckBox1   = "C&DK"
  485.     CheckBox2   = "Hel&p Compiler"
  486.     CheckBox3   = "&Win API Ref"
  487.     CheckBox4   = "Co&ntrols/Samples"
  488.     CheckBox5   = "C&lipart/Graphics"
  489.     CheckBox6   = "&Tech Articles"
  490.     ChkBoxText1 = "Select one or more of the following components to Install."
  491.     OptionsGreyed = {}
  492.     STF_BACK_ENABLED = "Yes"
  493.  
  494.  
  495.  
  496. [Manditory Path Variables]
  497.     GetPTitle  = "Main Destination Path"
  498.     GetPLabel  = "&Path:"
  499.     GetPText1  = "The Setup program will copy the Professional Toolkit for Visual Basic into subdirectories below the following directory."
  500.  
  501.  GetPText2  = ""
  502.     GetPathMessBoxTitle = "Setup Message"
  503.     GetPathMessBoxText  = "The path you entered is not a valid pathname."
  504.     HelpText1  = "\n
  505.                   To install the Professional Toolkit in a different directory, select the current path and type the path where you want to install them."
  506.     STF_BACK_ENABLED = "No"
  507.  
  508. [d-main]
  509. 1, README2.TXT, SIZE=3174
  510. 1, PACKING.LST, SIZE=8903
  511.  
  512. [d-clipart1]
  513. 1,ART\CLIPART\ARROWS\2DARROW1.WMF, SIZE=4370, ROOT
  514. 1,ART\CLIPART\ARROWS\2DARROW2.WMF, SIZE=4370, ROOT
  515. 1,ART\CLIPART\ARROWS\2DARROW3.WMF, SIZE=4370, ROOT
  516. 1,ART\CLIPART\ARROWS\2DARROW4.WMF, SIZE=4370, ROOT
  517. 1,ART\CLIPART\ARROWS\3DARROW1.WMF, SIZE=4370, ROOT
  518. 1,ART\CLIPART\ARROWS\3DARROW2.WMF, SIZE=4370, ROOT
  519. 1,ART\CLIPART\ARROWS\3DARROW3.WMF, SIZE=4370, ROOT
  520. 1,ART\CLIPART\ARROWS\3DARROW4.WMF, SIZE=4370, ROOT
  521. 1,ART\CLIPART\ARROWS\3DARROW5.WMF, SIZE=4370, ROOT
  522. 1,ART\CLIPART\ARROWS\3DARROW6.WMF, SIZE=4370, ROOT
  523. 1,ART\CLIPART\ARROWS\3DARROW7.WMF, SIZE=4370, ROOT
  524. 1,ART\CLIPART\ARROWS\3DXARROW.WMF, SIZE=4370, ROOT
  525. 1,ART\CLIPART\ARROWS\3DXCIRAR.WMF, SIZE=4370, ROOT
  526. 1,ART\CLIPART\ARROWS\HALFARRW.WMF, SIZE=4370, ROOT
  527. 1,ART\CLIPART\ARROWS\HORTARRW.WMF, SIZE=4370, ROOT
  528. 1,ART\CLIPART\ARROWS\HOZCIRAR.WMF, SIZE=4370, ROOT
  529. 1,ART\CLIPART\ARROWS\LAYERARW.WMF, SIZE=4370, ROOT
  530. 1,ART\CLIPART\ARROWS\LRGEARRW.WMF, SIZE=4370, ROOT
  531. 1,ART\CLIPART\ARROWS\MEDARRW1.WMF, SIZE=4370, ROOT
  532. 1,ART\CLIPART\ARROWS\MEDARRW2.WMF, SIZE=4370, ROOT
  533. 1,ART\CLIPART\ARROWS\MULTARW1.WMF, SIZE=4370, ROOT
  534. 1,ART\CLIPART\ARROWS\MULTARW2.WMF, SIZE=4370, ROOT
  535. 1,ART\CLIPART\ARROWS\MULTARW3.WMF, SIZE=4370, ROOT
  536. 1,ART\CLIPART\ARROWS\MULTARW4.WMF, SIZE=4370, ROOT
  537. 1,ART\CLIPART\ARROWS\SMALLARW.WMF, SIZE=4370, ROOT
  538. 1,ART\CLIPART\ARROWS\TINYARRW.WMF, SIZE=4370, ROOT
  539. 1,ART\CLIPART\ARROWS\VERTARRW.WMF, SIZE=4370, ROOT
  540. 1,ART\CLIPART\ARROWS\VRTCIRAR.WMF, SIZE=4370, ROOT
  541. 1,ART\CLIPART\ARROWS\VRTCURAR.WMF, SIZE=4370, ROOT
  542. 1,ART\CLIPART\ARROWS\XARROW.WMF, SIZE=4370, ROOT
  543.  
  544. [d-clipart2]
  545. 1,ART\CLIPART\BUSINESS\3DLRSIGN.WMF, SIZE=9214, ROOT
  546. 1,ART\CLIPART\BUSINESS\ALPHBORD.WMF, SIZE=9214, ROOT
  547. 1,ART\CLIPART\BUSINESS\ALPHTRPN.WMF, SIZE=9214, ROOT
  548. 1,ART\CLIPART\BUSINESS\ANSWMACH.WMF, SIZE=9214, ROOT
  549. 1,ART\CLIPART\BUSINESS\APPTBOOK.WMF, SIZE=9214, ROOT
  550. 1,ART\CLIPART\BUSINESS\CALCULTR.WMF, SIZE=9214, ROOT
  551. 1,ART\CLIPART\BUSINESS\CALENDAR.WMF, SIZE=9214, ROOT
  552. 1,ART\CLIPART\BUSINESS\CENT.WMF, SIZE=9214, ROOT
  553. 1,ART\CLIPART\BUSINESS\CHECK.WMF, SIZE=9214, ROOT
  554. 1,ART\CLIPART\BUSINESS\CLIPBORD.WMF, SIZE=9214, ROOT
  555. 1,ART\CLIPART\BUSINESS\COINS.WMF, SIZE=9214, ROOT
  556. 1,ART\CLIPART\BUSINESS\COMPUTER.WMF, SIZE=9214, ROOT
  557. 1,ART\CLIPART\BUSINESS\COPYMACH.WMF, SIZE=9214, ROOT
  558. 1,ART\CLIPART\BUSINESS\DEUTSCH.WMF, SIZE=9214, ROOT
  559. 1,ART\CLIPART\BUSINESS\DIGITALS.WMF, SIZE=9214, ROOT
  560. 1,ART\CLIPART\BUSINESS\DIGITNUM.WMF, SIZE=9214, ROOT
  561. 1,ART\CLIPART\BUSINESS\DIME.WMF, SIZE=9214, ROOT
  562. 1,ART\CLIPART\BUSINESS\DISK35.WMF, SIZE=9214, ROOT
  563. 1,ART\CLIPART\BUSINESS\DISK525.WMF, SIZE=9214, ROOT
  564. 1,ART\CLIPART\BUSINESS\DOLLAR.WMF, SIZE=9214, ROOT
  565. 1,ART\CLIPART\BUSINESS\DOLLARS.WMF, SIZE=9214, ROOT
  566. 1,ART\CLIPART\BUSINESS\ENVLBACK.WMF, SIZE=9214, ROOT
  567. 1,ART\CLIPART\BUSINESS\ENVLFRNT.WMF, SIZE=9214, ROOT
  568. 1,ART\CLIPART\BUSINESS\FILECLSD.WMF, SIZE=9214, ROOT
  569. 1,ART\CLIPART\BUSINESS\FILEOPEN.WMF, SIZE=9214, ROOT
  570. 1,ART\CLIPART\BUSINESS\GUILDER.WMF, SIZE=9214, ROOT
  571. 1,ART\CLIPART\BUSINESS\HARDDISK.WMF, SIZE=9214, ROOT
  572. 1,ART\CLIPART\BUSINESS\LAPTOP1.WMF, SIZE=9214, ROOT
  573. 1,ART\CLIPART\BUSINESS\LAPTOP2.WMF, SIZE=9214, ROOT
  574. 1,ART\CLIPART\BUSINESS\MICRCHIP.WMF, SIZE=9214, ROOT
  575. 1,ART\CLIPART\BUSINESS\MONEY.WMF, SIZE=9214, ROOT
  576. 1,ART\CLIPART\BUSINESS\MONEYBAG.WMF, SIZE=9214, ROOT
  577. 1,ART\CLIPART\BUSINESS\MONITOR.WMF, SIZE=9214, ROOT
  578. 1,ART\CLIPART\BUSINESS\MONYSTK1.WMF, SIZE=9214, ROOT
  579. 1,ART\CLIPART\BUSINESS\MONYSTK2.WMF, SIZE=9214, ROOT
  580. 1,ART\CLIPART\BUSINESS\NICKEL.WMF, SIZE=9214, ROOT
  581. 1,ART\CLIPART\BUSINESS\PAYPHONE.WMF, SIZE=9214, ROOT
  582. 1,ART\CLIPART\BUSINESS\PCOMPUTR.WMF, SIZE=9214, ROOT
  583. 1,ART\CLIPART\BUSINESS\PENNY.WMF, SIZE=9214, ROOT
  584. 1,ART\CLIPART\BUSINESS\PESETA.WMF, SIZE=9214, ROOT
  585. 1,ART\CLIPART\BUSINESS\PHONE.WMF, SIZE=9214, ROOT
  586. 1,ART\CLIPART\BUSINESS\POSTCARD.WMF, SIZE=9214, ROOT
  587. 1,ART\CLIPART\BUSINESS\POUND.WMF, SIZE=9214, ROOT
  588. 1,ART\CLIPART\BUSINESS\POUNDBAG.WMF, SIZE=9214, ROOT
  589. 1,ART\CLIPART\BUSINESS\PRINTER.WMF, SIZE=9214, ROOT
  590. 1,ART\CLIPART\BUSINESS\PRNTOUT1.WMF, SIZE=9214, ROOT
  591. 1,ART\CLIPART\BUSINESS\PRNTOUT2.WMF, SIZE=9214, ROOT
  592. 1,ART\CLIPART\BUSINESS\PRNTOUT3.WMF, SIZE=9214, ROOT
  593. 1,ART\CLIPART\BUSINESS\QUARTER.WMF, SIZE=9214, ROOT
  594. 1,ART\CLIPART\BUSINESS\ROLODEX.WMF, SIZE=9214, ROOT
  595. 1,ART\CLIPART\BUSINESS\RUBLE.WMF, SIZE=9214, ROOT
  596. 1,ART\CLIPART\BUSINESS\SATEDISH.WMF, SIZE=9214, ROOT
  597. 1,ART\CLIPART\BUSINESS\SATELIT1.WMF, SIZE=9214, ROOT
  598. 1,ART\CLIPART\BUSINESS\SATELIT2.WMF, SIZE=9214, ROOT
  599. 1,ART\CLIPART\BUSINESS\TYPEWRTR.WMF, SIZE=9214, ROOT
  600. 1,ART\CLIPART\BUSINESS\YEN.WMF, SIZE=9214, ROOT
  601.  
  602. [d-gaugebmp]
  603. 1,ART\GAUGE\CIRCLOCK.BMP, SIZE=5466, ROOT
  604. 1,ART\GAUGE\DOME.BMP, SIZE=5466, ROOT
  605. 1,ART\GAUGE\HORZ.BMP, SIZE=5466, ROOT
  606. 1,ART\GAUGE\HORZ1.BMP, SIZE=5466, ROOT
  607. 1,ART\GAUGE\SEMICIRC.BMP, SIZE=5466, ROOT
  608. 1,ART\GAUGE\SPEEDO.BMP, SIZE=5466, ROOT
  609. 1,ART\GAUGE\THERBOT.BMP, SIZE=5466, ROOT
  610. 1,ART\GAUGE\THERLFT.BMP, SIZE=5466, ROOT
  611. 1,ART\GAUGE\THERMID.BMP, SIZE=5466, ROOT
  612. 1,ART\GAUGE\THERMIDH.BMP, SIZE=5466, ROOT
  613. 1,ART\GAUGE\THERRT.BMP, SIZE=5466, ROOT
  614. 1,ART\GAUGE\THERTOP.BMP, SIZE=5466, ROOT
  615. 1,ART\GAUGE\VERT.BMP, SIZE=5466, ROOT
  616. 1,ART\GAUGE\VOLBOT.BMP, SIZE=5466, ROOT
  617. 1,ART\GAUGE\VOLTOP.BMP, SIZE=5466, ROOT
  618.  
  619. [d-toolbar]
  620. 1,ART\TOOLBAR\ARC-DWN.BMP, SIZE=4096, ROOT
  621. 1,ART\TOOLBAR\ARC-INAC.BMP, SIZE=4096, ROOT
  622. 1,ART\TOOLBAR\ARC-UP.BMP, SIZE=4096, ROOT
  623. 1,ART\TOOLBAR\BLD-DWN.BMP, SIZE=4096, ROOT
  624. 1,ART\TOOLBAR\BLD-INAC.BMP, SIZE=4096, ROOT
  625. 1,ART\TOOLBAR\BLD-UP.BMP, SIZE=4096, ROOT
  626. 1,ART\TOOLBAR\BTTN-DWN.BMP, SIZE=4096, ROOT
  627. 1,ART\TOOLBAR\BTTN-INA.BMP, SIZE=4096, ROOT
  628. 1,ART\TOOLBAR\BTTN-UP.BMP, SIZE=4096, ROOT
  629. 1,ART\TOOLBAR\CNT-DWN.BMP, SIZE=4096, ROOT
  630. 1,ART\TOOLBAR\CNT-INAC.BMP, SIZE=4096, ROOT
  631. 1,ART\TOOLBAR\CNT-UP.BMP, SIZE=4096, ROOT
  632. 1,ART\TOOLBAR\DBLU-DWN.BMP, SIZE=4096, ROOT
  633. 1,ART\TOOLBAR\DBLU-INA.BMP, SIZE=4096, ROOT
  634. 1,ART\TOOLBAR\DBLU-UP.BMP, SIZE=4096, ROOT
  635. 1,ART\TOOLBAR\HLP-DWN.BMP, SIZE=4096, ROOT
  636. 1,ART\TOOLBAR\HLP-INAC.BMP, SIZE=4096, ROOT
  637. 1,ART\TOOLBAR\HLP-UP.BMP, SIZE=4096, ROOT
  638. 1,ART\TOOLBAR\ITL-DWN.BMP, SIZE=4096, ROOT
  639. 1,ART\TOOLBAR\ITL-INAC.BMP, SIZE=4096, ROOT
  640. 1,ART\TOOLBAR\ITL-UP.BMP, SIZE=4096, ROOT
  641. 1,ART\TOOLBAR\JST-DWN.BMP, SIZE=4096, ROOT
  642. 1,ART\TOOLBAR\JST-INAC.BMP, SIZE=4096, ROOT
  643. 1,ART\TOOLBAR\JST-UP.BMP, SIZE=4096, ROOT
  644. 1,ART\TOOLBAR\LFT-DWN.BMP, SIZE=4096, ROOT
  645. 1,ART\TOOLBAR\LFT-INAC.BMP, SIZE=4096, ROOT
  646. 1,ART\TOOLBAR\LFT-UP.BMP, SIZE=4096, ROOT
  647. 1,ART\TOOLBAR\LN-DWN.BMP, SIZE=4096, ROOT
  648. 1,ART\TOOLBAR\LN-INAC.BMP, SIZE=4096, ROOT
  649. 1,ART\TOOLBAR\LN-UP.BMP, SIZE=4096, ROOT
  650. 1,ART\TOOLBAR\LNKPIC-D.BMP, SIZE=4096, ROOT
  651. 1,ART\TOOLBAR\LNKPIC-I.BMP, SIZE=4096, ROOT
  652. 1,ART\TOOLBAR\LNKPIC-U.BMP, SIZE=4096, ROOT
  653. 1,ART\TOOLBAR\MCR-DWN.BMP, SIZE=4096, ROOT
  654. 1,ART\TOOLBAR\MCR-INAC.BMP, SIZE=4096, ROOT
  655. 1,ART\TOOLBAR\MCR-UP.BMP, SIZE=4096, ROOT
  656. 1,ART\TOOLBAR\OVL-DWN.BMP, SIZE=4096, ROOT
  657. 1,ART\TOOLBAR\OVL-INAC.BMP, SIZE=4096, ROOT
  658. 1,ART\TOOLBAR\OVL-UP.BMP, SIZE=4096, ROOT
  659. 1,ART\TOOLBAR\PRT-DWN.BMP, SIZE=4096, ROOT
  660. 1,ART\TOOLBAR\PRT-INAC.BMP, SIZE=4096, ROOT
  661. 1,ART\TOOLBAR\PRT-UP.BMP, SIZE=4096, ROOT
  662. 1,ART\TOOLBAR\RCT-DWN.BMP, SIZE=4096, ROOT
  663. 1,ART\TOOLBAR\RCT-INAC.BMP, SIZE=4096, ROOT
  664. 1,ART\TOOLBAR\RCT-UP.BMP, SIZE=4096, ROOT
  665. 1,ART\TOOLBAR\RT-DWN.BMP, SIZE=4096, ROOT
  666. 1,ART\TOOLBAR\RT-INACT.BMP, SIZE=4096, ROOT
  667. 1,ART\TOOLBAR\RT-UP.BMP, SIZE=4096, ROOT
  668. 1,ART\TOOLBAR\SMCAP-DN.BMP, SIZE=4096, ROOT
  669. 1,ART\TOOLBAR\SMCAP-IN.BMP, SIZE=4096, ROOT
  670. 1,ART\TOOLBAR\SMCAP-UP.BMP, SIZE=4096, ROOT
  671. 1,ART\TOOLBAR\SUM-DWN.BMP, SIZE=4096, ROOT
  672. 1,ART\TOOLBAR\SUM-INAC.BMP, SIZE=4096, ROOT
  673. 1,ART\TOOLBAR\SUM-UP.BMP, SIZE=4096, ROOT
  674. 1,ART\TOOLBAR\TBC-DWN.BMP, SIZE=4096, ROOT
  675. 1,ART\TOOLBAR\TBC-INAC.BMP, SIZE=4096, ROOT
  676. 1,ART\TOOLBAR\TBC-UP.BMP, SIZE=4096, ROOT
  677. 1,ART\TOOLBAR\TBD-DWN.BMP, SIZE=4096, ROOT
  678. 1,ART\TOOLBAR\TBD-INAC.BMP, SIZE=4096, ROOT
  679. 1,ART\TOOLBAR\TBD-UP.BMP, SIZE=4096, ROOT
  680. 1,ART\TOOLBAR\TBL-DWN.BMP, SIZE=4096, ROOT
  681. 1,ART\TOOLBAR\TBL-INAC.BMP, SIZE=4096, ROOT
  682. 1,ART\TOOLBAR\TBL-UP.BMP, SIZE=4096, ROOT
  683. 1,ART\TOOLBAR\TBR-DWN.BMP, SIZE=4096, ROOT
  684. 1,ART\TOOLBAR\TBR-INAC.BMP, SIZE=4096, ROOT
  685. 1,ART\TOOLBAR\TBR-UP.BMP, SIZE=4096, ROOT
  686. 1,ART\TOOLBAR\U-DWN.BMP, SIZE=4096, ROOT
  687. 1,ART\TOOLBAR\U-INACT.BMP, SIZE=4096, ROOT
  688. 1,ART\TOOLBAR\U-UP.BMP, SIZE=4096, ROOT
  689. 1,ART\TOOLBAR\WDU-DWN.BMP, SIZE=4096, ROOT
  690. 1,ART\TOOLBAR\WDU-INAC.BMP, SIZE=4096, ROOT
  691. 1,ART\TOOLBAR\WDU-UP.BMP, SIZE=4096, ROOT
  692.  
  693. [d-cdk]
  694. 1,CDK\README.TXT, SIZE=5841
  695. 1,CDK\VBAPI.H, SIZE=5841
  696. 1,CDK\VBAPI.HLP, SIZE=5841
  697. 1,CDK\VBAPI.LIB, SIZE=5841
  698. 1,CDK\CIRCLE1\CCINIT.C, SIZE=5841
  699. 1,CDK\CIRCLE1\CIRCLE.C, SIZE=5841
  700. 1,CDK\CIRCLE1\CIRCLE.DEF, SIZE=5841
  701. 1,CDK\CIRCLE1\CIRCLE.H, SIZE=5841
  702. 1,CDK\CIRCLE1\CIRCLE.RC, SIZE=5841
  703. 1,CDK\CIRCLE1\CIRCLE1.VBX, SIZE=5841
  704. 1,CDK\CIRCLE1\CIRCLECD.BMP, SIZE=5841
  705. 1,CDK\CIRCLE1\CIRCLECU.BMP, SIZE=5841
  706. 1,CDK\CIRCLE1\CIRCLEEU.BMP, SIZE=5841
  707. 1,CDK\CIRCLE1\CIRCLEMU.BMP, SIZE=5841
  708. 1,CDK\CIRCLE1\LIBINIT.ASM, SIZE=5841
  709. 1,CDK\CIRCLE1\LIBINIT.OBJ, SIZE=5841
  710. 1,CDK\CIRCLE1\MAKEFILE., SIZE=5841
  711. 3,CDK\CIRCLE2\CCINIT.C, SIZE=5841
  712. 3,CDK\CIRCLE2\CIRCLE.C, SIZE=5841
  713. 3,CDK\CIRCLE2\CIRCLE.DEF, SIZE=5841
  714. 3,CDK\CIRCLE2\CIRCLE.H, SIZE=5841
  715. 3,CDK\CIRCLE2\CIRCLE.RC, SIZE=5841
  716. 3,CDK\CIRCLE2\CIRCLE2.VBX, SIZE=5841
  717. 3,CDK\CIRCLE2\CIRCLECD.BMP, SIZE=5841
  718. 3,CDK\CIRCLE2\CIRCLECU.BMP, SIZE=5841
  719. 3,CDK\CIRCLE2\CIRCLEEU.BMP, SIZE=5841
  720. 3,CDK\CIRCLE2\CIRCLEMU.BMP, SIZE=5841
  721. 3,CDK\CIRCLE2\LIBINIT.ASM, SIZE=5841
  722. 3,CDK\CIRCLE2\LIBINIT.OBJ, SIZE=5841
  723. 3,CDK\CIRCLE2\MAKEFILE., SIZE=5841
  724. 3,CDK\CIRCLE3\CCINIT.C, SIZE=5841
  725. 3,CDK\CIRCLE3\CIRCLE.C, SIZE=5841
  726. 3,CDK\CIRCLE3\CIRCLE.DEF, SIZE=5841
  727. 3,CDK\CIRCLE3\CIRCLE.H, SIZE=5841
  728. 3,CDK\CIRCLE3\CIRCLE.RC, SIZE=5841
  729. 3,CDK\CIRCLE3\CIRCLE3.VBX, SIZE=5841
  730. 3,CDK\CIRCLE3\CIRCLECD.BMP, SIZE=5841
  731. 3,CDK\CIRCLE3\CIRCLECU.BMP, SIZE=5841
  732. 3,CDK\CIRCLE3\CIRCLEEU.BMP, SIZE=5841
  733. 3,CDK\CIRCLE3\CIRCLEMU.BMP, SIZE=5841
  734. 3,CDK\CIRCLE3\LIBINIT.ASM, SIZE=5841
  735. 3,CDK\CIRCLE3\LIBINIT.OBJ, SIZE=5841
  736. 3,CDK\CIRCLE3\MAKEFILE., SIZE=5841
  737. 3,CDK\CNTR\CCINIT.C, SIZE=5841
  738. 3,CDK\CNTR\CNTR.C, SIZE=5841
  739. 3,CDK\CNTR\CNTR.DEF, SIZE=5841
  740. 3,CDK\CNTR\CNTR.H, SIZE=5841
  741. 3,CDK\CNTR\CNTR.RC, SIZE=5841
  742. 3,CDK\CNTR\CNTR.VBX, SIZE=5841
  743. 3,CDK\CNTR\CNTRCDN.BMP, SIZE=5841
  744. 3,CDK\CNTR\CNTRCUP.BMP, SIZE=5841
  745. 3,CDK\CNTR\CNTREUP.BMP, SIZE=5841
  746. 3,CDK\CNTR\CNTRMUP.BMP, SIZE=5841
  747. 3,CDK\CNTR\LIBINIT.ASM, SIZE=5841
  748. 3,CDK\CNTR\LIBINIT.OBJ, SIZE=5841
  749. 3,CDK\CNTR\MAKEFILE., SIZE=5841
  750. 1,CDK\PIX\CCINIT.C, SIZE=5841
  751. 1,CDK\PIX\LIBINIT.ASM, SIZE=5841
  752. 1,CDK\PIX\LIBINIT.OBJ, SIZE=5841
  753. 1,CDK\PIX\MAKEFILE., SIZE=5841
  754. 1,CDK\PIX\PIX.C, SIZE=5841
  755. 1,CDK\PIX\PIX.DEF, SIZE=5841
  756. 1,CDK\PIX\PIX.H, SIZE=5841
  757. 1,CDK\PIX\PIX.RC, SIZE=5841
  758. 1,CDK\PIX\PIX.VBX, SIZE=5841
  759. 1,CDK\PIX\PIXCD.BMP, SIZE=5841
  760. 1,CDK\PIX\PIXCU.BMP, SIZE=5841
  761. 1,CDK\PIX\PIXEU.BMP, SIZE=5841
  762. 1,CDK\PIX\PIXMU.BMP, SIZE=5841
  763. 1,CDK\PUSH\CCINIT.C, SIZE=5841
  764. 1,CDK\PUSH\LIBINIT.ASM, SIZE=5841
  765. 1,CDK\PUSH\LIBINIT.OBJ, SIZE=5841
  766. 1,CDK\PUSH\MAKEFILE., SIZE=5841
  767. 1,CDK\PUSH\PUSH.C, SIZE=5841
  768. 1,CDK\PUSH\PUSH.DEF, SIZE=5841
  769. 1,CDK\PUSH\PUSH.H, SIZE=5841
  770. 1,CDK\PUSH\PUSH.RC, SIZE=5841
  771. 1,CDK\PUSH\PUSH.VBX, SIZE=5841
  772. 1,CDK\PUSH\PUSHCDN.BMP, SIZE=5841
  773. 1,CDK\PUSH\PUSHCUP.BMP, SIZE=5841
  774. 1,CDK\PUSH\PUSHEUP.BMP, SIZE=5841
  775. 1,CDK\PUSH\PUSHMUP.BMP, SIZE=5841
  776.  
  777. [d-hc]
  778. 1,HC\ABOUT.FRM, SIZE=1740
  779. 1,HC\BULLET.BMP, SIZE=1740
  780. 1,HC\CALLHELP.BMP, SIZE=1740
  781. 1,HC\CALLHELP.DOC, SIZE=1740
  782. 1,HC\CALLHELP.FRM, SIZE=1740
  783. 1,HC\CALLHELP.GBL, SIZE=1740
  784. 1,HC\CALLHELP.HLP, SIZE=1740
  785. 1,HC\CALLHELP.HPJ, SIZE=1740
  786. 1,HC\CALLHELP.ICO, SIZE=1740
  787. 1,HC\CALLHELP.MAK, SIZE=1740
  788. 1,HC\CHFORM.BMP, SIZE=1740
  789. 1,HC\EMDASH.BMP, SIZE=1740
  790. 1,HC\FILEMENU.BMP, SIZE=1740
  791. 1,HC\HC.EXE, SIZE=1740
  792. 1,HC\MAP.TXT, SIZE=1740
  793. 1,HC\README.TXT, SIZE=1740
  794. 1,HC\TEST.HPJ, SIZE=1740
  795. 1,HC\TRACK.DOC, SIZE=1740
  796. 1,HC\VBHELP.DOT, SIZE=1740
  797. 1,HC\VBHELP2.DOT, SIZE=1740
  798. 1,HC\WINHELP.TXT, SIZE=1740
  799.  
  800. [d-samples]
  801. 2,SAMPLES\COMMDEMO\COMMDEMO.GLB, SIZE=11050
  802. 2,SAMPLES\COMMDEMO\COMMDEMO.FRM, SIZE=11050
  803. 2,SAMPLES\COMMDEMO\COMMDEMO.MAK, SIZE=11050
  804. 2,SAMPLES\COMMDEMO\README.TXT, SIZE=11050
  805. 2,SAMPLES\FLIP\FLIP.FRM, SIZE=11050
  806. 2,SAMPLES\FLIP\FLIP.MAK, SIZE=11050
  807. 2,SAMPLES\FLIP\README.TXT, SIZE=11050
  808. 2,SAMPLES\HUGEARRY\HUGEARR.BAS, SIZE=11050
  809. 2,SAMPLES\HUGEARRY\HUGEARR.C, SIZE=11050
  810. 2,SAMPLES\HUGEARRY\HUGEARR.DEF, SIZE=11050
  811. 2,SAMPLES\HUGEARRY\HUGEARR.DLL, SIZE=11050
  812. 2,SAMPLES\HUGEARRY\HUGEARR.H, SIZE=11050
  813. 2,SAMPLES\HUGEARRY\MAKEFILE., SIZE=11050
  814. 2,SAMPLES\HUGEARRY\README.TXT, SIZE=11050
  815. 2,SAMPLES\JIGSAW\ABOUTDLG.FRM, SIZE=11050
  816. 2,SAMPLES\JIGSAW\JIGSAW.FRM, SIZE=11050
  817. 2,SAMPLES\JIGSAW\JIGSAW.GBL, SIZE=11050
  818. 2,SAMPLES\JIGSAW\JIGSAW.MAK, SIZE=11050
  819. 2,SAMPLES\JIGSAW\JSPROCS.BAS, SIZE=11050
  820. 2,SAMPLES\JIGSAW\OPENFILE.FRM, SIZE=11050
  821. 2,SAMPLES\JIGSAW\README.TXT, SIZE=11050
  822. 2,SAMPLES\MCI\ABOUTBOX.FRM, SIZE=2418  
  823. 2,SAMPLES\MCI\ANIMATE.FRM, SIZE=3754
  824. 2,SAMPLES\MCI\CD.FRM, SIZE=10430   
  825. 2,SAMPLES\MCI\GLOBAL.BAS, SIZE=682
  826. 2,SAMPLES\MCI\MCITEST.BAS, SIZE=1252
  827. 2,SAMPLES\MCI\MCITEST.FRM, SIZE=3371
  828. 2,SAMPLES\MCI\MCITEST.MAK, SIZE=214
  829. 2,SAMPLES\MCI\MCITEST.MID, SIZE=17674
  830. 2,SAMPLES\MCI\MCITEST.MMM, SIZE=83152
  831. 2,SAMPLES\MCI\MCITEST.WAV, SIZE=11420
  832. 2,SAMPLES\MCI\OPENDLG.FRM, SIZE=348
  833. 2,SAMPLES\MCI\README.TXT, SIZE=22 
  834. 2,SAMPLES\MCI\WAVE.FRM, SIZE=3998   
  835. 2,SAMPLES\OLE\OLEDEMO.BAS, SIZE=177   
  836. 2,SAMPLES\OLE\OLEDEMO.MAK, SIZE=187   
  837. 2,SAMPLES\OLE\OLEDEMO1.FRM, SIZE=10220  
  838. 2,SAMPLES\OLE\OLEDEMO2.FRM, SIZE=2909  
  839. 2,SAMPLES\OLE\OLEDEMO3.FRM, SIZE=2785  
  840. 2,SAMPLES\OLE\OLEDEMO4.FRM, SIZE=743  
  841. 2,SAMPLES\PEN\DELAY.FRM, SIZE=4678   
  842. 2,SAMPLES\PEN\EDITSUBF.FRM, SIZE=4500
  843. 2,SAMPLES\PEN\GESTFRM.FRM, SIZE=2242 
  844. 2,SAMPLES\PEN\INKFRM.FRM, SIZE=4790  
  845. 2,SAMPLES\PEN\KEYBRD.FRM, SIZE=4565  
  846. 2,SAMPLES\PEN\PENAPI.TXT, SIZE=26997  
  847. 2,SAMPLES\PEN\PENMAIN.FRM, SIZE=2335 
  848. 2,SAMPLES\PEN\PENSMPL.MAK, SIZE=182 
  849. 2,SAMPLES\PEN\RCFRM.FRM, SIZE=5494   
  850. 2,SAMPLES\PEN\README.TXT, SIZE=713  
  851. 2,SAMPLES\PEN\SAMPLE.BAS, SIZE=27714  
  852. 2,SETUPKIT\README.TXT, SIZE=29  
  853. 2,SETUPKIT\SETUPKIT.HLP, SIZE=40056
  854. 2,SETUPKIT\KITFILES\SETUP.EXE, SIZE=13952   
  855. 2,SETUPKIT\KITFILES\SETUP.LST, SIZE=4096   
  856. 2,SETUPKIT\KITFILES\SETUPKIT.DLL, SIZE=7008
  857. 2,SETUPKIT\KITFILES\VER.DLL, SIZE=8736   
  858. 2,SETUPKIT\SETUP1\MESSAGE.FRM, SIZE=261 
  859. 2,SETUPKIT\SETUP1\OPTION.FRM, SIZE=1153  
  860. 2,SETUPKIT\SETUP1\PATH.FRM, SIZE=1956   
  861. 2,SETUPKIT\SETUP1\README.TXT, SIZE=291 
  862. 2,SETUPKIT\SETUP1\SETUP1.BAS, SIZE=17975 
  863. 2,SETUPKIT\SETUP1\SETUP1.EXE, SIZE=33402 
  864. 2,SETUPKIT\SETUP1\SETUP1.FRM, SIZE=14083 
  865. 2,SETUPKIT\SETUP1\SETUP1.GLB, SIZE=782 
  866. 2,SETUPKIT\SETUP1\SETUP1.MAK, SIZE=153
  867. 2,SETUPKIT\SETUP1\STATUS.FRM, SIZE=1080 
  868. 2,SETUPKIT\TESTAPP\TESTAPP.EXE, SIZE=16313  
  869. 2,SETUPKIT\TESTAPP\TESTAPP.FRM, SIZE=4280  
  870. 2,SETUPKIT\TESTAPP\TESTAPP.MAK, SIZE=112  
  871. 2,SETUPKIT\TESTAPP\README.TXT, SIZE=2000
  872.  
  873. [d-winsys]
  874. 2,VBX\ANIBUTON.VBX, SIZE=91000, ROOT
  875. 2,VBX\CMDIALOG.VBX, SIZE=17000, ROOT
  876. 2,VBX\GAUGE.VBX, SIZE=30000, ROOT
  877. 2,VBX\GRAPH.VBX, SIZE=58000, ROOT
  878. 2,VBX\GRID.VBX, SIZE=33000, ROOT
  879. 2,VBX\INSTSCRL.VBX, SIZE=10000, ROOT
  880. 2,VBX\KEYSTAT.VBX, SIZE=24000, ROOT
  881. 2,VBX\MCI.VBX, SIZE=38000, ROOT
  882. 2,VBX\MDICHILD.VBX, SIZE=42700, ROOT
  883. 2,VBX\OLECLIEN.VBX, SIZE=25000, ROOT
  884. 2,VBX\PENCNTRL.VBX, SIZE=27000, ROOT
  885. 2,VBX\PICCLIP.VBX, SIZE=13000, ROOT
  886. 2,VBX\SPIN.VBX, SIZE=17000, ROOT
  887. 2,VBX\THREED.VBX, SIZE=56000, ROOT
  888. 2,VBX\GSW.EXE, SIZE=236000, ROOT
  889. 2,VBX\GSWDLL.DLL, SIZE=70000, ROOT
  890. 2,VBX\VB.LIC, SIZE=4096, ROOT
  891. 2,VBX\COMMDLG.DLL, SIZE=85700, ROOT, OVERWRITE=OLDER, VERSION="3,10,0,61"
  892. 2,VBX\OLECLI.DLL, SIZE=80100, ROOT, OVERWRITE=OLDER, VERSION="1,7,0,0"
  893. 2,VBX\SHELL.DLL, SIZE=40000, ROOT, OVERWRITE=OLDER, VERSION="1,0,0,0"
  894.  
  895. [d-winapi]
  896. 2,WINAPI\APIXREF.HLP, SIZE=147000
  897. 2,WINAPI\README.TXT, SIZE=9000
  898. 2,WINAPI\WINAPI.TXT, SIZE=124000
  899. 3,WINAPI\WINSDK.HLP, SIZE=1975000
  900.  
  901. [d-const]
  902. 1,MISC\CONST2.TXT, SIZE=16000, ROOT
  903.  
  904. [d-knowledge]
  905. 2,MISC\VBKNOWLG.HLP, SIZE=589600, ROOT
  906.  
  907. [d-demo]
  908. 1,MISC\DEMO.EXE, SIZE=251000, ROOT
  909.  
  910. [d-ctrlref]
  911. 1,MISC\CTRLREF.HLP, SIZE=880000, ROOT
  912.  
  913. [End of File]
  914.  
  915.  
  916.