home *** CD-ROM | disk | FTP | other *** search
/ Chip: 25 Years Anniversary / CHIP_25Jahre_Jubilaeum.iso / downloads / 401065 / WPO11 / Data1.cab / _6F55EB8BFE3D40F7AEB00D735498C4D1 < prev    next >
Text File  |  2003-03-07  |  8KB  |  310 lines

  1. {TAB}
  2.  
  3. Syntax
  4.  
  5. {TAB <Number>}
  6.  
  7. Description
  8.  
  9. {TAB}, like {BIGRIGHT}, moves one cell to the right.
  10.  
  11. When the Compatible Keys option is checked, {TAB} selects the leftmost cell of the screen that is to the right of the current one.
  12.  
  13. The optional argument Number specifies how many times to repeat the operation; for example, {TAB 2} is equivalent to pressing Tab twice.
  14.  
  15. Parameters
  16.  
  17. Number    Any positive integer or the address of a cell containing a positive integer (optional)
  18.  
  19. Note
  20.  
  21.   This command is obsolete
  22.   
  23. {TabControl}
  24.  
  25. Syntax
  26.  
  27.  {TabControl.Option}
  28.  
  29. Description
  30.  
  31.  {TabControl} lets you add, remove, and rearrange tabs in the current tab control.
  32.  
  33. Options
  34.  
  35.  {TabControl.Add_Page TabControlName, Position}    Adds the tab indicated in Page Name after the tab name selected in Page List.
  36.  
  37.  {TabControl.Delete_Page TabControlName, TabButtonName}    Removes the selected tab name from the tab control.
  38.  
  39.  {TabControl.Insert_Page TabControlName, Position}    Adds the tab indicated in Page Name before the tab name selected in Page List.
  40.  
  41.  {TabControl.Move_Page TabControlName, TabButtonName,Up|Down}    Changes the position of the tab name selected in Page List.
  42.  
  43.  {TabControl.SelectPage TabControlName, TabButtonName}    Selects a named sheet.
  44.  
  45. Note
  46.  
  47.   This command is obsolete
  48.   
  49. {TABLE}
  50.  
  51. Description
  52.  
  53.  {TABLE} repeats the last What-If operation.
  54.  
  55. {TableLink}
  56.  
  57. Syntax
  58.  
  59.  {TableLink.Option}
  60.  
  61. PerfectScript Syntax
  62.  
  63.  TableLink_Block (Block:String)
  64.  
  65.  TableLink_Go ()
  66.  
  67.  TableLink_Name (TableName:String)
  68.  
  69. Description
  70.  
  71.  {TableLink} establishes a link to an external database table and displays the table in a Quattro Pro notebook.
  72.  
  73.  You can use {TableLink?} or {TableLink!} to display the Table Link dialog box. {TableLink?} lets you manipulate the dialog box, whereas {TableLink!} relies on the macro to manipulate it.
  74.  
  75. Options
  76.  
  77.  {TableLink.Block Block}    Specifies the cells where you want the linked table to appear.
  78.  
  79.  {TableLink.Name TableName}    Sets the filename of the database table to which you want to establish a link.
  80.  
  81.   {TableLink.Go}    Links the table.
  82.  
  83. {TableQuery}
  84.  
  85. Syntax
  86.  
  87.  {TableQuery.Option}
  88.  
  89. PerfectScript Syntax
  90.  
  91.  TableQuery_Destination (Block:String)
  92.  
  93.  TableQuery_FileQuery (Yes?:Enumeration {Yes!; No!})
  94.  
  95.  TableQuery_Go ()
  96.  
  97.  TableQuery_QueryBlock (Block:String)
  98.  
  99.  TableQuery_QueryFile (Filename:String)
  100.  
  101. Description
  102.  
  103.  {TableQuery} lets you search external databases for records. The query is not performed until {TableQuery.Go} is used.
  104.  
  105.  You can use {TableQuery?} or {TableQuery!} to display the Table Query dialog box. {TableQuery?} lets you manipulate the dialog box, whereas {TableQuery!} relies on the macro to manipulate it.
  106.  
  107. Example
  108.  
  109.  The following macro searches the external table TASKLIST.DB using the query file TASKLIST.QBE. The results of the search are stored in A:A2.
  110.  
  111.  {TableQuery.FileQuery Yes}
  112.  
  113.  {TableQuery.QueryFile TASKLIST.QBE}
  114.  
  115.  {TableQuery.Destination A:A2}
  116.  
  117.  {TableQuery.Go}
  118.  
  119.  
  120.  
  121.  The next macro searches the same database, but uses the query defined in the named cell task_query.
  122.  
  123.  {TableQuery.FileQuery No}
  124.  
  125.  {TableQuery.QueryBlock task_query}
  126.  
  127.  {TableQuery.Destination A:A2}
  128.  
  129.  {TableQuery.Go}
  130.  
  131. Options
  132.  
  133.  {TableQuery.Destination Block}    Specifies the cells for the query's Answer Table (its results).
  134.  
  135.  {TableQuery.FileQuery Yes|No}    Specifies an external query file as the source of the query text.
  136.  
  137.  {TableQuery.Go}    Performs the table query.
  138.  
  139.  {TableQuery.QueryBlock Block}    Specifies cells in the active notebook as the source of the query text.
  140.  
  141.  {TableQuery.QueryFile Filename}    Specifies the filename or cell coordinates of the query text.
  142.  
  143. {TableView}
  144.  
  145. Description
  146.  
  147.  {TableView} launches the Database Desktop.
  148.  
  149. {TemplateTB}
  150.  
  151. Syntax
  152.  
  153.  {TemplateTB.Option}
  154.  
  155. PerfectScript Syntax
  156.  
  157.  TemplateTB_Add (Name:String; Path:String)
  158.  
  159.  TemplateTB_Context (Name:String; Settings:String)
  160.  
  161.  TemplateTB_Docking_Position (Name:String; Position:Enumeration {Top!; Bottom!; Left!; Right!; Floating!}; [Context:Numeric])
  162.  
  163.  TemplateTB_Hide (Name:String)
  164.  
  165.  TemplateTB_Remove (Name:String)
  166.  
  167.  TemplateTB_Rename (Name:String; NewName:String)
  168.  
  169.  TemplateTB_Reset (Name:String)
  170.  
  171.  TemplateTB_Show (Name:String)
  172.  
  173. Description
  174.  
  175.  {TemplateTB} is similar to {Toolbar.Option} except that it controls the Template toolbar.
  176.  
  177. Options
  178.  
  179.  {TemplateTB.Add Name, Path}    Adds a new Template toolbar.
  180.  
  181.  {TemplateTB.Show Name}    Shows a Template toolbar.
  182.  
  183.  {TemplateTB.Hide Name}    Hides a Template toolbar.
  184.  
  185.  {TemplateTB.Remove Name}    Removes a Template toolbar.
  186.  
  187.  {TemplateTB.Reset Name}    Resets a Template toolbar to its default setup.
  188.  
  189.  {TemplateTB.Docking_Position Name, Top | Left | Right | Bottom | Floating}    Sets the docking position of a Template toolbar.
  190.  
  191.  {TemplateTB.Rename Name, NewName}    Renames a Template toolbar.
  192.  
  193.  {TemplateTB.Context Name, Desktop (Yes | No), Notebook (Yes | No), Chart (Yes | No), Dialog (Yes | No), Objects Page (Yes | No), Slide Show (Yes | No)}    Sets the contexts in Quattro Pro in which a Template toolbar appears.
  194.  
  195. {TERMINATE}
  196.  
  197. Syntax
  198.  
  199.  {TERMINATE DDEChannel}
  200.  
  201. Description
  202.  
  203.  {TERMINATE} closes down a DDE conversation opened with {INITIATE}.
  204.  
  205.  For an example using {TERMINATE}, see {EXECUTE}.
  206.  
  207. Parameters
  208.  
  209.  DDEChannel    Channel number of the DDE conversation to terminate
  210.  
  211. Note
  212.  
  213.   This command is obsolete
  214.   
  215. {Toolbar}
  216.  
  217. Syntax
  218.  
  219.  {Toolbar.Option}
  220.  
  221. PerfectScript Syntax
  222.  
  223.  Toolbar_Add (Name:String; Path:String)
  224.  
  225.  Toolbar_Context (Name:String; Settings:String)
  226.  
  227.  Toolbar_Docking_Position (Name:String; Position:Enumeration {Top!; Bottom!; Left!; Right!; Floating!}; [Context:Numeric])
  228.  
  229.  Toolbar_Hide (Name:String)
  230.  
  231.  Toolbar_Remove (Name:String)
  232.  
  233.  Toolbar_Rename (Name:String; NewName:String)
  234.  
  235.  Toolbar_Reset (Name:String)
  236.  
  237.  Toolbar_Show (Name:String)
  238.  
  239. Description
  240.  
  241.  {Toolbar} displays and hides toolbars.
  242.  
  243.  {Toolbar.Docking_Position Order} is a numeric number used to position the selected toolbar in relation to other visible toolbars at the specified docking position:
  244.  
  245.  -1    Displays the specified toolbar at the end of toolbars at the specified docking position
  246.  
  247.  0    Displays the specified toolbar at the beginning of toolbars at the specified docking position
  248.  
  249.  1    Displays the specified toolbar 1 position in from the beginning of toolbars at the specified docking position
  250.  
  251.  n    Displays the specified toolbar n positions in from the beginning of toolbars at the specified docking position.
  252.  
  253.  To record such macros as adding, positioning, and removing toolbars, right-click anywhere on a visible toolbar while recording a macro.
  254.  
  255. Options
  256.  
  257.  {Toolbar.Add Name, Path}    Lets you create a toolbar and add it to the toolbar list.
  258.  
  259.  {Toolbar.Context Name, Desktop(1|0), Notebook(1|0), Chart(1|0), Dialog(1|0), Objects Page(1|0), Slide Show(1|0)}    Lists all toolbars. The option is obsolete. 
  260.  
  261.  {Toolbar.Docking_Position Name, Top | Left | Right | Bottom | Floating, Order}    Specifies where the toolbar will appear when on screen.
  262.  
  263.  {Toolbar.Hide Name}    Hides the selected toolbar.
  264.  
  265.  {Toolbar.Remove Name}    Removes a toolbar you created from the list.
  266.  
  267.  {Toolbar.Rename Name, NewName}    Specifies the name of the toolbar.
  268.  
  269.  {Toolbar.Reset Name}    Changes the selected standard Quattro Pro toolbar back to its default settings.
  270.  
  271.  {Toolbar.Show Name}    Displays the selected toolbar.
  272.  
  273. Note
  274.  
  275.   This command is obsolete
  276.   
  277. {TTESTM}
  278.  
  279. Syntax
  280.  
  281.  {TTESTM InBlock1,InBlock2,OutBlock,<Labels>,<Alpha>,<Difference>}
  282.  
  283. Description
  284.  
  285.  {TTESTM} performs a Student's t-Test using two indepependent (rather than paired) samples with equal variances. {TTESTM} is equivalent to the t-Test analysis tool.
  286.  
  287. Parameters
  288.  
  289.  InBlock1    One or more numeric cell values representing the first input cells
  290.  
  291.  InBlock2    One or more numeric cell values representing the second input cells
  292.  
  293.  OutBlock    Upper-left cell of the output cells
  294.  
  295.  Labels    1 if labels are located in the first column or row of the input cells; 0 if the input cells do not contain labels; the default is 0
  296.  
  297.  Alpha    Significance level of the test; the default is 0.05
  298.  
  299.  Difference    Value indicating the hypothetical difference in the means between InBlock1 and InBlock2; the default is 0
  300.  
  301. Note
  302.  
  303.   This command is obsolete
  304.   
  305.  
  306.  
  307.  
  308.  
  309.  
  310.