User contributions for Brendon

A user with 1,002 edits. Account created on 22 June 2012.
Jump to navigation Jump to search
Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

8 July 2012

  • 17:4017:40, 8 July 2012 diff hist +745 N LogCreated page with "LOG(''number'') '''Description''' LOG returns a double-precision value equal to the natural logarithm of a number. The required parameter, ''number'', is any numeric express..."
  • 17:3217:32, 8 July 2012 diff hist +790 N LenCreated page with "LEN(''string'' | ''variable'') '''Description''' LEN returns a long value specifying the number of characters in a string, or the number of bytes required to output a variab..."
  • 17:2817:28, 8 July 2012 diff hist +823 N LeftCreated page with "LEFT(''string'', ''length'') '''Description''' LEFT returns a string containing a specified number of characters from the left end of a string. The required parameter, ''str..."
  • 17:2517:25, 8 July 2012 diff hist +432 N LcaseCreated page with "LCASE(''string'') '''Description''' LCASE returns string with all of its uppercase characters converted to lowercase. The required parameter, ''string'', is any valid string..."
  • 17:2217:22, 8 July 2012 diff hist +4 Javascript...End JavascriptNo edit summary
  • 17:2117:21, 8 July 2012 diff hist +1 LBoundNo edit summary
  • 17:2117:21, 8 July 2012 diff hist +947 N LBoundCreated page with "LBOUND(''array''[, ''dimension'']) '''Description''' LBOUND returns a long value specifying the smallest available subscript in dimension of an array, ''array''. The require..."
  • 17:1617:16, 8 July 2012 diff hist +841 N JoinCreated page with "JOIN(''stringarray''[, ''delimiter'']) '''Description''' JOIN returns a string that is created by concatenating a list of strings with an optional delimit character. The req..."
  • 17:1217:12, 8 July 2012 diff hist +911 N Javascript...End JavascriptCreated page with "JAVASCRIPT <br /> :[statements] <br /> END JAVASCRIPT '''Description''' The JAVASCRIPT statement allows you to ember pure JavaScript in your NS Basic/X program. This allows ..."
  • 16:5616:56, 8 July 2012 diff hist +335 Language referenceNo edit summary

5 July 2012

  • 13:3813:38, 5 July 2012 diff hist +921 N Is (function)Created page with "ISARRAY(''expression'') ISDATE(''expression'') ISEMPTY(''expression'') ISNULL(''expression'') ISNUMERIC(''expression'') ISOBJECT(''expression'') '''Description''' The I..."
  • 13:3413:34, 5 July 2012 diff hist +679 N Is (operator)Created page with "''result'' = ''object1'' IS ''object2'' '''Description''' IS returns a boolean specifying if one object reference is identical to another. The required components, ''object1..."
  • 13:3213:32, 5 July 2012 diff hist +2 Language referenceNo edit summary
  • 13:3113:31, 5 July 2012 diff hist +466 N IntCreated page with "INT(''number'') '''Description''' INT removes the fractional part of a number, returning the next smallest integer. The required parameter, ''number'', is any valid numeric ..."
  • 13:2913:29, 5 July 2012 diff hist +1,453 N Instr/InstrRevCreated page with "INSTR([''start'', ]''string1'', ''string2''[, ''compare'']) INSTRREV(''string1'', ''string2''[, ''start''[, ''compare'']]) '''Description''' INSTR returns a long value spec..."
  • 13:2513:25, 5 July 2012 diff hist +1,221 N InputBoxCreated page with "INPUTBOX(''prompt''[, ''title''[, ''default''[, ''xpos'', ''ypos'']]]) '''Description''' INPUTBOX opens a dialog box to prompt a user to input text or click a button. A stri..."
  • 13:2113:21, 5 July 2012 diff hist +4 ImpNo edit summary
  • 13:2113:21, 5 July 2012 diff hist −4 ImpNo edit summary
  • 13:2013:20, 5 July 2012 diff hist +984 N ImpCreated page with "''Reslut'' = ''x'' IMP ''y'' '''Description''' IMP returns the logical implication of two expressions. Logical implication returns TRUE if ''x'' implies ''y''. IMP also does..."
  • 13:1413:14, 5 July 2012 diff hist +1,387 N If...Then...ElseCreated page with "<pre> IF ''condition'' THEN ''statements'' [ELSE ''elsestatements''] IF ''condition'' THEN [''statements''] [ELSEIF ''condition-n'' THEN ['..."
  • 13:0913:09, 5 July 2012 diff hist +20 Language referenceNo edit summary
  • 13:0813:08, 5 July 2012 diff hist +219 Language referenceNo edit summary
  • 12:5512:55, 5 July 2012 diff hist +2 HTMLNo edit summary
  • 12:5512:55, 5 July 2012 diff hist −2 HTMLNo edit summary
  • 12:5412:54, 5 July 2012 diff hist +799 N HTMLCreated page with "HTML <br /> :::[''statements''] <br /> END HTML '''Description''' The HTML statement allows you to ember pure HTML in your NS Basic/X program. This allows you to have additi..."
  • 12:5112:51, 5 July 2012 diff hist +637 N HourCreated page with "HOUR(''time'') '''Description''' HOUR returns a whole number ranging from 0 to 23 that represents the hour of day of a given time. The required parameter, ''time'', can be a..."
  • 12:4812:48, 5 July 2012 diff hist +583 N HexCreated page with "HEX(''number'') '''Description''' HEX returns a string representation of the hexadecimal (base 16) value of a number. The required parameter, ''number'', is any numeric expr..."
  • 12:4612:46, 5 July 2012 diff hist +75 Language referenceNo edit summary
  • 12:4312:43, 5 July 2012 diff hist +2,281 N FunctionCreated page with "FUNCTION ''procedurename''[(''arglist'')] <br /> :::[''statements''] <br /> :::[''procedurename'' = ''expression''] <br /> :::[EXIT FUNCTION] <br /> :::[''statements''] <br />..."
  • 12:3712:37, 5 July 2012 diff hist −4 FormatNo edit summary
  • 12:3512:35, 5 July 2012 diff hist +2,653 N FormatCreated page with "<pre> FORMATCURRENCY(expression[, fractionaldigits[, leadingdigit[, parensfornegative[, groupdigits]]]]) FORMATDATETIME(date[, formatname]) FORMATNUMBER(exp..."
  • 12:2512:25, 5 July 2012 diff hist +1,283 N For Each...NextCreated page with "FOR EACH ''element'' IN ''group'' <br /> :::[''statements''] <br /> ::::[EXIT FOR] <br /> :::[''statements''] <br /> NEXT [''element''] '''Description''' FOR EACH...NEXT rep..."
  • 12:1912:19, 5 July 2012 diff hist +1,331 N For...NextCreated page with "FOR ''counter'' = ''start'' TO ''end'' [STEP ''step''] <br /> :::[''statements''] <br /> ::::[EXIT FOR] <br /> :::[''statements''] <br /> NEXT '''Description''' FOR...NEXT r..."
  • 12:1312:13, 5 July 2012 diff hist +653 N FixCreated page with "FIX(''number'') '''Description''' FIX removes the fractional part from a number, returning the integer closest to 0. The required parameter, ''number'', is any numeric expre..."
  • 12:1012:10, 5 July 2012 diff hist +24 FilterNo edit summary
  • 12:0912:09, 5 July 2012 diff hist +1,626 N FilterCreated page with "FILTER (''stringarray'', ''value''[, ''include''[, ''compare'']]) '''Description''' FILTER returns an array of strings that is a subset of inputs that have met the specified..."
  • 12:0212:02, 5 July 2012 diff hist +202 Language referenceNo edit summary

4 July 2012

  • 04:1504:15, 4 July 2012 diff hist +459 N ExpCreated page with "EXP(''number'') '''Description''' EXP returns a double-precision value equal to e<sup>number</sup>. The required parameter, ''number'', is any numeric expression. e is the b..."
  • 04:1104:11, 4 July 2012 diff hist +1,051 N ExitCreated page with "EXIT DO EXIT FOR EXIT FUNCTION EXIT SUB '''Description''' EXIT terminates the execution of a block of code in a DO...LOOP, FOR...NEXT, FOR EACH...NEXT, FUNCTION, or SUB. ..."
  • 04:0704:07, 4 July 2012 diff hist +750 N ExecuteCreated page with "Execute(''string'') '''Description''' EXECUTE executes an expression or file as if it were code substituted in the program. The required parameter, ''string'', can be either..."
  • 04:0404:04, 4 July 2012 diff hist +20 EventsNo edit summary
  • 04:0204:02, 4 July 2012 diff hist +1,921 EventsNo edit summary
  • 03:5003:50, 4 July 2012 diff hist −2 EventsNo edit summary
  • 03:5003:50, 4 July 2012 diff hist +2 EventsNo edit summary
  • 03:4903:49, 4 July 2012 diff hist +11 EventsNo edit summary
  • 03:4803:48, 4 July 2012 diff hist +75 N EventsCreated page with "SUB ObjectName_Event[(arglist)] [Statements] END SUB '''Description'''"
  • 03:4703:47, 4 July 2012 diff hist +783 N EvalCreated page with "EVAL(''string'') '''Description''' EVAL returns a value created by executing an expression as if it were a FUNCTION procedure. The required parameter, ''string'', is a strin..."
  • 03:4303:43, 4 July 2012 diff hist +444 N Escape/unEscapeCreated page with "ESCAPE(''string'') UNESCAPE(''string'') '''Description''' ESCAPE returns a string with all special characters turned into a % character followed by the hex value of the cha..."
  • 03:4003:40, 4 July 2012 diff hist +4 EraseNo edit summary
  • 03:3903:39, 4 July 2012 diff hist +786 N EraseCreated page with "'''Statement''' ERASE ''arrays'' '''Description''' ERASE reinitializes fixed-size arrays, and releases memory allocated for dynamic-array storage. The required component, a..."
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)