home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / vxcliser.zip / VXREXX.3 / SYSTEM / FUNCTION.MTC < prev    next >
Text File  |  1994-12-23  |  10KB  |  132 lines

  1. Additional Functions
  2. Arithmetic;Binary to hexadecimal conversion;B2X_retval_Binary_rexx.inf;RF1Parm
  3. Arithmetic;Character to decimal conversion;C2D_retval_String_N_rexx.inf;RF2Parm
  4. Arithmetic;Character to hexadecimal conversion;C2X_retval_String_rexx.inf;RF1Parm
  5. Arithmetic;Decimal to character conversion;D2C_retval_number_Length_rexx.inf;RF2Parm
  6. Arithmetic;Decimal to hexadecimal conversion;D2X_retval_number_Length_rexx.inf;RF2Parm
  7. Arithmetic;Find the largest of a set of numbers;Max;MinMax
  8. Arithmetic;Find the smallest of a set of numbers;Min;MinMax
  9. Arithmetic;Format a number;Format_number_Number_Before_After_ExpPlace_ExpTrig_rexx.inf;RF5Parm
  10. Arithmetic;Get a random number;Random_number_Min_Max_Seed_rexx.inf;RF3Parm
  11. Arithmetic;Get the absolute value of a number;Abs_absval_Number_rexx.inf;RF1Parm
  12. Arithmetic;Get the current setting of Numeric Digits;Digits_digits;RF0Parm
  13. Arithmetic;Get the current setting of Numeric Form;Form_form;RF0Parm
  14. Arithmetic;Get the current setting of Numeric Fuzz;Fuzz_fuzz;RF0Parm
  15. Arithmetic;Get the sign of a number;Sign_sign_Number_rexx.inf;RF1Parm
  16. Arithmetic;Hexadecimal to binary conversion;X2B_retval_HexString_rexx.inf;RF1Parm
  17. Arithmetic;Hexadecimal to character conversion;X2C_retval_HexString_rexx.inf;RF1Parm
  18. Arithmetic;Hexadecimal to decimal conversion;X2D_retval_HexString_Length_rexx.inf;RF2Parm
  19. Arithmetic;Perform a bit by bit AND;BitAnd_retval_Number1_Number2_Pad_rexx.inf;RF3Parm
  20. Arithmetic;Perform a bit by bit OR;BitOr_retval_Number1_Number2_Pad_rexx.inf;RF3Parm
  21. Arithmetic;Perform a bit by bit XOR;BitXor_retval_Number1_Number2_Pad_rexx.inf;RF3Parm
  22. Arithmetic;Truncate a number;Trunc_newnumber_Number_Decimals_rexx.inf;RF2Parm
  23. Debugging;Return a specified line from a source file;SourceLine_line_LineNum_rexx.inf;RF1Parm
  24. Debugging;Trace function;Trace;Trace
  25. Dialog;File selection dialog;VRFileDialog;VRFileDi
  26. Dialog;Message dialog;VRMessage;VRMess
  27. Dialog;Multiline message dialog;VRMessageStem;VRMessSt
  28. Dialog;Prompt dialog;VRPrompt;VRPrompt
  29. Environment;Get the name of the host environment;Address_env;RF0Parm
  30. Environment;Redirect standard output;VRRedirectStdIO;VRRedire
  31. Environment;Restore directory and environment variables;EndLocal_ok;RF0Parm
  32. Environment;Return the last error message;VRError_error;NoParmsF
  33. Environment;Set directory and environment variables;SetLocal_ok;RF0Parm
  34. Environment;Turn syntax checking on or off;VROptions;VROption
  35. File;Change the attributes on a file;VRChAttr;VRChAtt
  36. File;Change the current directory;VRChDir_ok;DirFunc
  37. File;Change the current drive;VRChDrive_oldDrive;DrivFunc
  38. File;Copy a file or group of files;VRCopyFile;VRCopyF
  39. File;Create a file;VRCreateFile_ok;FileFunc
  40. File;Delete a file;VRDeleteFile_ok;FileFunc
  41. File;Determine if a directory exists;VRIsDir_ok;DirFunc
  42. File;Determine if a file exists;VRFileExists_ok;FileFunc
  43. File;Expand a file name;VRExpandFileName_filename;FileFunc
  44. File;Find a file;VRFindFile;VRFindF
  45. File;Get a file's OS/2 file type;VRGetFileType;VRGetFT
  46. File;Get a directory listing;VRDir;VRDir
  47. File;Get a list of all known OS/2 file types;VRListFileType;VRListFT
  48. File;Get or change the current directory;Directory_dir_NewDir_rexx.inf;RF1Parm
  49. File;Get the current directory;VRCurrDir_dir;DrivFunc
  50. File;Get the current drive;VRCurrDrive_drive;NoParmsF
  51. File;Make a new directory;VRMkDir_ok;DirFunc
  52. File;Parse a file name;VRParseFileName;VRParse
  53. File;Parse a path;VRParseFilePath;VRParsFP
  54. File;Remove a directory;VRRmDir_ok;DirFunc
  55. File;Rename a file or group of files;VRRenameFile;VRRename
  56. File;Set a file date and time;VRFileDate;VRFileD
  57. File;Set a file's OS/2 file type;VRSetFileType;VRSetFT
  58. Object;Bring up a popup menu;Popup;Popup
  59. Object;Create an object at run time;VRCreate;VRCreate
  60. Object;Create an object using a stem variable;VRCreateStem;VRCreats
  61. Object;Destroy an object;VRDestroy;VRDest
  62. Object;Get information on the last event;VRInfo;VRInfo
  63. Object;Get the file for the current window;VRWindowPath_filename;NoParmsF
  64. Object;Get the handle for the current window;VRWindow_window;NoParmsF
  65. Object;Load a secondary window;VRLoadSecondary;VRLoads
  66. Object;Load a window;VRLoad;VRLoad
  67. Object;Test if an object still exists;VRIsValidObject_ok_object_a2z;RF1PARM
  68. Printing;Get job data;VRPrintJobDialog;VRPrntJD
  69. Printing;Print a file;VRPrintFile;VRPrntFl
  70. Queues;Get the number of lines in current queue;Queued_lines;RF0Parm
  71. REXX Constructs;DO ... END construct;simple-do;RXCONS
  72. REXX Constructs;DO 100 ... END construct;simple-iterative-loop;RXCONS
  73. REXX Constructs;DO FOREVER ... LEAVE ... END construct;do-forever-leave;RXCONS
  74. REXX Constructs;DO i = 1 TO 100 ... END construct;unconditional-iterative-loop;RXCONS
  75. REXX Constructs;DO i = 1 TO 100 BY 1 FOR 100 ... END construct;conditional-iterative-loop-with-by-for;RXCONS
  76. REXX Constructs;DO i = 1 TO 100 UNTIL construct;conditional-iterative-loop-with-until;RXCONS
  77. REXX Constructs;DO i = 1 TO 100 WHILE construct;conditional-iterative-loop-with-while;RXCONS
  78. REXX Constructs;DO UNTIL ... END construct;do-until;RXCONS
  79. REXX Constructs;DO WHILE ... END construct;do-while;RXCONS
  80. REXX Constructs;IF-THEN construct;if-then;RXCONS
  81. REXX Constructs;IF-THEN-ELSE construct;if-then-else;RXCONS
  82. REXX Constructs;SELECT-WHEN-OTHERWISE construct;select-when;RXCONS
  83. Streams;Find the length of a stream;Chars_length_IOStream_rexx.inf;RF1Parm
  84. Streams;Find the number of lines in a stream;Lines_lines_IOStream_rexx.inf;RF1Parm
  85. Streams;Get or set information for a stream;Stream;Stream
  86. Streams;Read a character in from a stream;CharIn_char_IOStream_Start_Length_rexx.inf;RF3Parm
  87. Streams;Read a line in from a stream;LineIn_line_IOStream_First_Count_rexx.inf;RF3Parm
  88. Streams;Write a character out to a stream;CharOut_count_IOStream_String_Start_rexx.inf;RF3Parm
  89. Streams;Write a line out to a stream;LineOut_count_IOStream_String_First_rexx.inf;RF3Parm
  90. String manipulation;Center a string;Center_centerstr_String_Length_Pad_rexx.inf;RF3Parm
  91. String manipulation;Check if a string uses only certain characters;Verify_position_String_CharSet_Option_Start_rexx.inf;RF4Parm
  92. String manipulation;Check if string2 is an abbreviation of string1;Abbrev_ok_String1_String2_Length_rexx.inf;RF3Parm
  93. String manipulation;Compare two strings;Compare_firstdif_String1_String2_Pad_rexx.inf;RF3Parm
  94. String manipulation;Delete a substring from a string;DelStr_newstring_String_Start_Length_rexx.inf;RF3Parm
  95. String manipulation;Delete words from a string;DelWord_newstring_String_StartWord_NumWords_rexx.inf;RF3Parm
  96. String manipulation;Find the first occurrence of one string in another;Pos_position_Substring_String_Start_rexx.inf;RF3Parm
  97. String manipulation;Find the last occurrence of one string in another;LastPos_position_Substring_String_Start_rexx.inf;RF3Parm
  98. String manipulation;Get a specified word from a string;Word_word_String_WordNum_rexx.inf;RF2Parm
  99. String manipulation;Get a substring from a string;SubStr_substring_String_start_length_Pad_rexx.inf;RF4Parm
  100. String manipulation;Get all characters in a range;XRange_chars_Start_End_rexx.inf;RF2Parm
  101. String manipulation;Get the leftmost characters from a string;Left_newstring_String_Length_Pad_rexx.inf;RF3Parm
  102. String manipulation;Get the length of a specified word;WordLength_length_String_WordNum_rexx.inf;RF2Parm
  103. String manipulation;Get the length of a string;Length_length_String_rexx.inf;RF1Parm
  104. String manipulation;Get the location of a phrase in a string;WordPos_wordnum_Phrase_String_Start_rexx.inf;RF3Parm
  105. String manipulation;Get the number of words in a string;Words_words_String_rexx.inf;RF1Parm
  106. String manipulation;Get the position of a specified word;WordIndex_position_String_WordNum_rexx.inf;RF2Parm
  107. String manipulation;Get the rightmost characters from a string;Right_newstring_String_Length_Pad_rexx.inf;RF3Parm
  108. String manipulation;Get words from a string;SubWord_newstring_String_StartWord_NumWords_rexx.inf;RF3Parm
  109. String manipulation;Insert one string into another;Insert_newstring_New_Target_Start_Length_Pad_rexx.inf;RF5Parm
  110. String manipulation;Make multiple copies of a string;Copies_string_Original_Copies_rexx.inf;RF2Parm
  111. String manipulation;Overlay one string onto another;Overlay_newstring_New_Target_Start_Length_Pad_rexx.inf;RF5Parm
  112. String manipulation;Perform a translation on a string;Translate_newstring_String_outTable_inTable_Pad_rexx.inf;RF4Parm
  113. String manipulation;Put characters between words in a string;Space_newstring_String_NumChars_Pad_rexx.inf;RF3Parm
  114. String manipulation;Reverse a string;Reverse_newstring_String_rexx.inf;RF1Parm
  115. String manipulation;Strip leading or trailing characters;Strip;Strip
  116. System;Delete an entry from an INI file;VRDelIni;VRDelIni
  117. System;Get a disk label;VRDiskLabel_label;DrivFunc
  118. System;Get an entry from an INI file;VRGetIni;VRGetIni
  119. System;Get error text for a REXX error number;ErrorText_text_ErrNumber_rexx.inf;RF1Parm
  120. System;Get info about the current trapped condition;Condition;Conditio
  121. System;Get information about a disk;VRDiskInfo;VRDiskI
  122. System;Get the date;Date;Date
  123. System;Get the time;Time;Time
  124. System;Get the version of a VX-REXX DLL;VRVersion_version;FileFunc
  125. System;Make a beep noise;Beep_ok_Frequency_Duration_rexx.inf;RF2Parm
  126. System;Set an entry in an INI file;VRSetIni;VRSetIni
  127. Variables;Check the data type of a quantity;Datatype_type_Value_Type_rexx.inf;RF2Parm
  128. Variables;Check the state of a symbol;Symbol_state_Name_rexx.inf;RF1Parm
  129. Variables;Get an argument passed to a procedure;Arg;Arg
  130. Variables;Get the value of a symbol;Value_value_Name_NewValue_Selector_rexx.inf;RF3Parm
  131. Variables;Sort a stem;VRSortStem;VRSortSt
  132.