home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 July / Chip_2000-07_cd.bin / sharewar / visds / visds.exe / Examples.txt < prev    next >
Text File  |  2000-05-05  |  3KB  |  145 lines

  1. Example scripts
  2. ===============
  3.  
  4. These example scripts demonstrate how to use some of the features of
  5. Visual DialogScript.
  6.  
  7. Most of them don't do anything useful, but merely demonstrate specific
  8. or useful techniques, or are intended to be used as templates for your
  9. own programs.
  10.  
  11. CALC
  12. ----
  13.  
  14. Files: Calc.dsc
  15.  
  16. A simple calculator.
  17.  
  18. CURSOR
  19. ------
  20.  
  21. Files: cursor.dsc
  22.  
  23. This file show the CURSOR options.
  24.  
  25. DDETEST
  26. -------
  27.  
  28. Files: Ddetest.dsc
  29.  
  30. This script demonstrates a use of Dynamic Data Exchange (DDE). Specify
  31. the server, topic and item and click Link to see the result. With
  32. Progman specified in each field you should see a list of program groups.
  33.  
  34. DLGTEST
  35. -------
  36.  
  37. Files: Dlgtest.dsc; dlgtest.dsr
  38.  
  39. This example script does nothing at all useful, but it demonstrates
  40. nearly all the different dialog elements and many of the events that are
  41. generated by them to give an example of how they work.
  42.  
  43. DRAGDROP
  44. --------
  45.  
  46. Files: Dragdrop.dsc
  47.  
  48. This script shows how to respond to drag and drop actions when files are
  49. dragged and dropped on to the dialog.
  50.  
  51. INFOTEST
  52. --------
  53.  
  54. Files: Infotest.dsc
  55.  
  56. Demonstrates the system information you can obtain from a script.
  57.  
  58. MMPLAY
  59. ------
  60.  
  61. Files: Mmplay.dsc; mmplay.ico
  62.  
  63. This is a drag-and-drop media player. It demonstrates the use of drag
  64. and drop and also the @MCI function to play multimedia files.
  65.  
  66. MODALDLG
  67. --------
  68.  
  69. This example demonstrates how to create and use a simple child dialog
  70. using the DIALOG SHOWMODAL command.
  71.  
  72. MULTIDLG
  73. --------
  74.  
  75. This example demonstrates how to create and use a child dialog using
  76. the DIALOG SHOW command. Though the programming is more complex than
  77. for a modal dialog, it allows the child dialog to have its own events
  78. which can be used to drive more sophisticated processing.
  79.  
  80. PARAMTST
  81. --------
  82.  
  83. Files: Paramtst.dsc
  84.  
  85. This very simple script lets you see how command line parameters are
  86. passed to a script.
  87.  
  88. PROPTIES
  89. --------
  90.  
  91. Files: Propties.dsc
  92.  
  93. This is a simple example demonstrating how to implement a tabbed
  94. property dialog using a TAB dialog element.
  95.  
  96. RESIZTST
  97. --------
  98.  
  99. Files: Resiztst.dsc
  100.  
  101. This script illustrates how the RESIZE event is processed to resize
  102. dialog elements so that they fit a resizable dialog window.
  103.  
  104. SKTEST
  105. ------
  106.  
  107. Files: Sktest.dsc
  108.  
  109. This script illustrates how to automate another application, in this
  110. case the Windows accessory WordPad, using the WINDOW SEND command.
  111.  
  112. TASKICON
  113. --------
  114.  
  115. Files: Taskicon.dsc; taskicon.dsr
  116.  
  117. This script illustrates a system tray icon application. An invisible
  118. main window is created by omitting the DIALOG SHOW. When the icon is
  119. clicked a popup menu is displayed. A modal dialog box is used to change
  120. the settings. The tray icon can be loaded from a resource file, so
  121. different icons can be encapsulated in a single file and easily
  122. displayed.
  123.  
  124. TRACKBARS
  125. ---------
  126.  
  127. Files: trackbars.dsc
  128.  
  129. This script illustrates several ways to handle trackbar dialog element.
  130.  
  131. VERINFO
  132. -------
  133.  
  134. Files: Verinfo.dsc
  135.  
  136. This useful tool shows how to use the @VERINFO function to extract
  137. embedded version information from an executable file.
  138.  
  139. WIZARD
  140. ------
  141.  
  142. Files: Wizard.dsc; wizard.dsr
  143.  
  144. This is a simple example demonstrating how to implement a Wizard.
  145.