home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 December / Chip_2003-12_cd1.bin / program / ctenari / ShiCola / CodePad37.exe / $INSTDIR / Code Templates / rapidq.tpl < prev    next >
Encoding:
Text File  |  2003-10-17  |  8.0 KB  |  339 lines

  1. object TPersHolder
  2.   P = <
  3.     item
  4.       Name = 'Abs'
  5.       Description = 'Absolute value of number'
  6.       Code.Strings = (
  7.         'Abs(|NumericExpression)')
  8.     end
  9.     item
  10.       Name = 'Asc'
  11.       Description = 'ASCII key value of Char$'
  12.       Code.Strings = (
  13.         'Asc(|Char$)')
  14.     end
  15.     item
  16.       Name = 'Chr'
  17.       Description = 'Character'
  18.       Code.Strings = (
  19.         'Chr$(|byte)')
  20.     end
  21.     item
  22.       Name = 'Sub'
  23.       Description = 'Sub - new procedure'
  24.       Code.Strings = (
  25.         'Sub |()'
  26.         'End Sub')
  27.     end
  28.     item
  29.       Name = 'Del'
  30.       Description = 'Delete chars from string'
  31.       Code.Strings = (
  32.         'Delete$(|string_expression, start, length)')
  33.     end
  34.     item
  35.       Name = 'Iif'
  36.       Description = 'Iif - condition statements'
  37.       Code.Strings = (
  38.         'Iif(|expression, true_expr, false_expr)'
  39.         '')
  40.     end
  41.     item
  42.       Name = 'InStr'
  43.       Description = 'InStr - text function'
  44.       Code.Strings = (
  45.         'InStr(|[start,] search_string, find_string)'
  46.         '')
  47.     end
  48.     item
  49.       Name = 'Left'
  50.       Description = 'Left - text function'
  51.       Code.Strings = (
  52.         'Left$(|string_expression, n)')
  53.     end
  54.     item
  55.       Name = 'Len'
  56.       Description = 'Length of string - text function'
  57.       Code.Strings = (
  58.         'Len(|string_expression)')
  59.     end
  60.     item
  61.       Name = 'Mid'
  62.       Description = 'Middle - text function'
  63.       Code.Strings = (
  64.         'Mid$(|string_expression, i, n)')
  65.     end
  66.     item
  67.       Name = 'Right'
  68.       Description = 'Right - text function'
  69.       Code.Strings = (
  70.         'Right$(|string_expression, n)')
  71.     end
  72.     item
  73.       Name = 'If'
  74.       Description = 'If - condition statements'
  75.       Code.Strings = (
  76.         'If |condition1 Then'
  77.         '   command1'
  78.         'ElseIf condition2 Then'
  79.         '   command2'
  80.         'Else'
  81.         '   command3'
  82.         'End If')
  83.     end
  84.     item
  85.       Name = 'Sel'
  86.       Description = 'Select - condition statements'
  87.       Code.Strings = (
  88.         'Select Case |expression'
  89.         '   Case condition1'
  90.         '       command1'
  91.         '   Case condition2'
  92.         '       command2'
  93.         '   Case Else'
  94.         '       condition3'
  95.         'End Select')
  96.     end
  97.     item
  98.       Name = 'For'
  99.       Description = 'For - looping'
  100.       Code.Strings = (
  101.         'For i = |x To y [Step z]'
  102.         '  commands'
  103.         'Next i')
  104.     end
  105.     item
  106.       Name = 'Do'
  107.       Description = 'Do - looping'
  108.       Code.Strings = (
  109.         'Do'
  110.         '   |commands'
  111.         'Loop Until condition')
  112.     end
  113.     item
  114.       Name = 'Color'
  115.       Description = 'Color - console keyword'
  116.       Code.Strings = (
  117.         'Color [|Fore%][, Back%]')
  118.     end
  119.     item
  120.       Name = 'App'
  121.       Description = 'Application (CGI or Console or GUI)'
  122.       Code.Strings = (
  123.         '$AppType CGI||Console|GUI')
  124.     end
  125.     item
  126.       Name = 'Type'
  127.       Description = 'TypeCheck (Off or On)'
  128.       Code.Strings = (
  129.         '$TypeCheck |Off|On')
  130.     end
  131.     item
  132.       Name = 'Incl'
  133.       Description = 'Include the file'
  134.       Code.Strings = (
  135.         '$Include "|rapidq.inc"')
  136.     end
  137.     item
  138.       Name = 'Res'
  139.       Description = 'Resource - file into application'
  140.       Code.Strings = (
  141.         '$Resource res_bmp1 As "|image.bmp"')
  142.     end
  143.     item
  144.       Name = 'Create'
  145.       Description = 'Create'
  146.       Code.Strings = (
  147.         'Create | As Type'
  148.         'End Create')
  149.     end
  150.     item
  151.       Name = 'With'
  152.       Description = 'With'
  153.       Code.Strings = (
  154.         'With |'
  155.         'End With')
  156.     end
  157.     item
  158.       Name = 'Constr'
  159.       Description = 'Constructor'
  160.       Code.Strings = (
  161.         'Constructor |'
  162.         'End Constructor')
  163.     end
  164.     item
  165.       Name = 'Func'
  166.       Description = 'Function - new'
  167.       Code.Strings = (
  168.         'Function |()'
  169.         'End Function')
  170.     end
  171.     item
  172.       Name = 'Subi'
  173.       Description = 'Sub(i)'
  174.       Code.Strings = (
  175.         'SubI | ()'
  176.         'End SubI')
  177.     end
  178.     item
  179.       Name = 'Funi'
  180.       Description = 'Function(i)'
  181.       Code.Strings = (
  182.         'FunctionI | ()'
  183.         'End FunctionI')
  184.     end
  185.     item
  186.       Name = 'Play'
  187.       Description = 'Plays a .wav file'
  188.       Code.Strings = (
  189.         'PlayWav |WavFileName, SndOptions')
  190.     end
  191.     item
  192.       Name = 'Dim'
  193.       Description = 'Dim - declaration statement '
  194.       Code.Strings = (
  195.         'Dim |Variable[(subscripts)] As Type'
  196.         '')
  197.     end
  198.     item
  199.       Name = 'DirEx'
  200.       Description = 'Directory exists?'
  201.       Code.Strings = (
  202.         'DirExists(|Path$)')
  203.     end
  204.     item
  205.       Name = 'FileEx'
  206.       Description = 'File exists?'
  207.       Code.Strings = (
  208.         'FileExists(|FileName$)')
  209.     end
  210.     item
  211.       Name = 'Ins'
  212.       Description = 'Insert one string into another string'
  213.       Code.Strings = (
  214.         'Insert$(|insert_string$, source_string$, index_number) ')
  215.     end
  216.     item
  217.       Name = 'Kill'
  218.       Description = 'Kill - deletes file'
  219.       Code.Strings = (
  220.         'Kill |Filename$')
  221.     end
  222.     item
  223.       Name = 'LCase'
  224.       Description = 'LowerCase Letters'
  225.       Code.Strings = (
  226.         'LCase$(|StringExpression)')
  227.     end
  228.     item
  229.       Name = 'LTrim'
  230.       Description = 'LeftTrim - remove spaces'
  231.       Code.Strings = (
  232.         'LTrim$(|string_expression)')
  233.     end
  234.     item
  235.       Name = 'Msg'
  236.       Description = 'Message Dialog'
  237.       Code.Strings = (
  238.         'MessageDlg(|string_expression, msgType, msgButtons, helpContext)')
  239.     end
  240.     item
  241.       Name = 'QSort'
  242.       Description = 'Quick sorting arrays of any type'
  243.       Code.Strings = (
  244.         'QuickSort(|array_begin, array_end, ascend|descend)')
  245.     end
  246.     item
  247.       Name = 'Random'
  248.       Description = 'Random-number generator'
  249.       Code.Strings = (
  250.         'Randomize |[numeric_expression]')
  251.     end
  252.     item
  253.       Name = 'Redim'
  254.       Description = 'Redim an array '
  255.       Code.Strings = (
  256.         'ReDim |Variable[(Subscripts)] As Type')
  257.     end
  258.     item
  259.       Name = 'Ren'
  260.       Description = 'Rename a file'
  261.       Code.Strings = (
  262.         'Rename file1, file2')
  263.     end
  264.     item
  265.       Name = 'Replace'
  266.       Description = 'Replace a part of a string with another'
  267.       Code.Strings = (
  268.         'Replace$(|source_string, replace_string, index)')
  269.     end
  270.     item
  271.       Name = 'Rev'
  272.       Description = 'Reverse a string (mirroring)'
  273.       Code.Strings = (
  274.         'Reverse$(string_expression)')
  275.     end
  276.     item
  277.       Name = 'RGB'
  278.       Description = 'RGB numeric representation (0-255)'
  279.       Code.Strings = (
  280.         'RGB(|Red%, Green%, Blue%)')
  281.     end
  282.     item
  283.       Name = 'Round'
  284.       Description = 'Round numeric expression'
  285.       Code.Strings = (
  286.         'Round(|numeric_expression)')
  287.     end
  288.     item
  289.       Name = 'Time'
  290.       Description = 'Time - return string of the current time '
  291.       Code.Strings = (
  292.         'TIME$'
  293.         '|')
  294.     end
  295.     item
  296.       Name = 'Dir'
  297.       Description = 'Returns the first/next file'
  298.       Code.Strings = (
  299.         'Dir$[(|FileSpec$, Attributes%)]')
  300.     end
  301.     item
  302.       Name = 'RTrim'
  303.       Description = 'Right Trim - remove spaces'
  304.       Code.Strings = (
  305.         'RTrim$(|string_expression)')
  306.     end
  307.     item
  308.       Name = 'SendMsg'
  309.       Description = 'Send Message (WinAPI calling)'
  310.       Code.Strings = (
  311.         'SendMessage |hWnd, uMsg, wParam, lParam')
  312.     end
  313.     item
  314.       Name = 'Shell'
  315.       Description = 'Shell executes command'
  316.       Code.Strings = (
  317.         'Shell(|command, showCMD)')
  318.     end
  319.     item
  320.       Name = 'ShowMsg'
  321.       Description = 'Show Message'
  322.       Code.Strings = (
  323.         'ShowMessage |msg$')
  324.     end
  325.     item
  326.       Name = 'Date'
  327.       Description = 'Date in MM-DD-YYYY format'
  328.       Code.Strings = (
  329.         'DATE$'
  330.         '|')
  331.     end
  332.     item
  333.       Name = 'PostMsg'
  334.       Description = 'Post message to handle (API function)'
  335.       Code.Strings = (
  336.         'PostMessage(|Handle, uMsg, wParam, lParam)')
  337.     end>
  338. end
  339.