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 ( | older 250) (20 | 50 | 100 | 250 | 500)

8 July 2012

  • 23:4423:44, 8 July 2012 diff hist +1,060 N SortCreated page with "SORT(''array''[,''sortfunction'']) '''Description''' SORT returns ''array'' as a sorted array in ascending order. If the elements are all strings or all numbers, it will be ..."
  • 23:4123:41, 8 July 2012 diff hist +299 N SleepCreated page with "SLEEP milliseconds '''Description''' SLEEP pauses execution of the program for a period of time equal to milliseconds. The program does not yield the event loop: execution w..."
  • 23:4023:40, 8 July 2012 diff hist +8 SessionStorageNo edit summary
  • 23:3923:39, 8 July 2012 diff hist +691 N SessionStorageCreated page with "SESSIONSTORAGE(''string'' | ''variable'') '''Description''' SESSIONSTORAGE allows you to save string data so it is available while you run the program. An entry can be creat..."
  • 23:3723:37, 8 July 2012 diff hist +1,455 N ReadFileCreated page with "READFILE (''filename''[,''method'']) '''Description''' NOTE: This function can be replaced by the Ajax() function. READFILE will read filename which can either be deployed ..."
  • 23:3423:34, 8 July 2012 diff hist +2 Properties and MethodsNo edit summary
  • 23:3423:34, 8 July 2012 diff hist −2 Properties and MethodsNo edit summary
  • 23:3323:33, 8 July 2012 diff hist 0 Properties and MethodsNo edit summary
  • 23:3323:33, 8 July 2012 diff hist +2,188 N Properties and MethodsCreated page with "'''Description''' Properties define the appearance and operation of controls. They are edited in the Property Editor window of the IDE. The properties described here are comm..."
  • 23:2423:24, 8 July 2012 diff hist +1,071 N NSB.ShowProgressCreated page with "NSB.SHOWPROGRESS(''message'') '''Description''' NSB.SHOWPROGRESS displays ''message'' to the user near the bottom middle of the screen. It can be dismissed or updated at any..."
  • 23:2123:21, 8 July 2012 diff hist +863 NSB.MsgBoxNo edit summary
  • 23:1423:14, 8 July 2012 diff hist +2,898 N NSB.MsgBoxCreated page with "NSB.MSGBOX(''function'', ''prompt''[, ''buttons''[, ''title'']]) '''Description''' MSGBOX opens a dialog box, and waits for the user to tap on a button. While it is displaye..."
  • 23:0423:04, 8 July 2012 diff hist +1,529 N NSB.InputBoxCreated page with " NSB.INPUTBOX(function, prompt[, title[, default]]) '''Description''' NSB.InputBox presents a modal dialog which prompts the user for an input value. While it is displayed,..."
  • 22:5822:58, 8 July 2012 diff hist +493 N Log10Created page with "LOG10(''number'') '''Description''' LOG10 returns the base-10 logarithm of a number. The required parameter, ''number'', is any numeric expression. '''Example''' <pre> RE..."
  • 22:5722:57, 8 July 2012 diff hist +828 N LocationCreated page with "LOCATION[(''string'' | ''variable'')] '''Description''' LOCATION lets you get or set the name of the current app. It will return the URL of the current app that you are runn..."
  • 22:5422:54, 8 July 2012 diff hist +1,206 N LocalStorageCreated page with "LOCALSTORAGE(''string'' | ''variable'') '''Description''' LOCALSTORAGE allows you to save string data so it is available next time you run the program. An entry can be creat..."
  • 22:4822:48, 8 July 2012 diff hist +850 N JSON.StringifyCreated page with "JSON.STRINGIFY (''object''[, ''replacer'']) '''Description''' JSON.STRINGIFY converts an NS Basic object to a string. The data is saved in JSON format, which is a widely use..."
  • 22:4622:46, 8 July 2012 diff hist +869 N JSON.ParseCreated page with "JSON.PARSE (''string''[, ''reviver'']) '''Description''' JSON.PARSE converts a string created by JSON.STRINGIFY into an NS Basic object. It is useful for interchanging data ..."
  • 22:4322:43, 8 July 2012 diff hist +487 N GetURLParameterCreated page with "GETURLPARAMETER(''varName'') '''Description''' GetURLParameter returns the value of parameter ''varName'' from the query string which started the app. If the app was started..."
  • 22:4222:42, 8 July 2012 diff hist +451 N GetRefCreated page with "GETREF (''objectName'') '''Description''' GetRef returns a reference to an object. This can be useful when you want get the reference to a function insteal of calling it. '..."
  • 22:4022:40, 8 July 2012 diff hist 0 FormNo edit summary
  • 22:3922:39, 8 July 2012 diff hist +331 N GetLocaleCreated page with "GETLOCALE () '''Description''' GetLocale returns the current language setting for the device. It returns a string of the form xx or xx-yy, where xx is the two digit language..."
  • 22:3722:37, 8 July 2012 diff hist +1,843 N FormCreated page with "'''Description''' Forms act as containers for controls. To go to a new form, use the ChangeForm() function. To add a Form to your app, choose Add Form from the Project menu ..."
  • 22:2822:28, 8 July 2012 diff hist +685 Language referenceNo edit summary
  • 22:1422:14, 8 July 2012 diff hist +24 Language referenceNo edit summary
  • 22:0922:09, 8 July 2012 diff hist −8 EventsNo edit summary
  • 22:0822:08, 8 July 2012 diff hist +1,045 EventsNo edit summary
  • 22:0222:02, 8 July 2012 diff hist +562 EventsNo edit summary
  • 21:4721:47, 8 July 2012 diff hist +1 Language referenceNo edit summary
  • 21:3821:38, 8 July 2012 diff hist 0 AndNo edit summary
  • 21:3721:37, 8 July 2012 diff hist +35 AndNo edit summary
  • 21:2621:26, 8 July 2012 diff hist +654 N YearCreated page with "YEAR(''date'') '''Description''' YEAR returns an integer, that represents the year of the given date.The required parameter, ''date'', can be any expression that represents ..."
  • 21:2321:23, 8 July 2012 diff hist +685 N XorCreated page with "''result'' = ''x'' XOR ''y'' '''Description''' XOR returns the logical, exclusive disjunction of two expressions. ''result'' is TRUE, if and only if one of the expressions '..."
  • 21:2021:20, 8 July 2012 diff hist −1 While...WendNo edit summary
  • 21:2021:20, 8 July 2012 diff hist −2 While...WendNo edit summary
  • 21:2021:20, 8 July 2012 diff hist +405 While...WendNo edit summary
  • 21:1621:16, 8 July 2012 diff hist +472 N While...WendCreated page with "WHILE condition <br /> :::[statements] <br /> WEND '''Description''' WHILE...WEND repeats a group of statements while a given condition is TRUE. The required component, cond..."
  • 21:1521:15, 8 July 2012 diff hist +400 N With...End WithCreated page with "WITH object <br /> :::[statements] <br /> END WITH '''Description''' WITH allows you to do a series of operations on an object without having to name the object each time. ..."
  • 21:1321:13, 8 July 2012 diff hist +4 WeekdayNameNo edit summary
  • 21:1221:12, 8 July 2012 diff hist +769 N WeekdayNameCreated page with "WEEKDAYNAME(''number''[, ''abbreviate''[, ''firstdayofweek'']]) '''Description''' WEEKDAYNAME returns a string representing the day of week. The required argument, ''number'..."
  • 21:1021:10, 8 July 2012 diff hist 0 WeekdayNo edit summary
  • 21:1021:10, 8 July 2012 diff hist +1,168 N WeekdayCreated page with "WEEKDAY(''date''[, ''firstdayofweek'']) '''Description''' WEEKDAY returns an integer representing the day of week from a given date. The required parameter, ''date'', is a ..."
  • 21:0521:05, 8 July 2012 diff hist +290 N WaitCursorCreated page with "WAITCURSOR true|'''false''' '''Description''' Set WAITCURSOR to true to display a wait cursor. The design of the cursor depends on the device. Set it to false to turn the wa..."
  • 21:0321:03, 8 July 2012 diff hist +1,186 N VarTypeCreated page with "VARTYPE(''variable'') '''Description''' VARTYPE returns an integer that indicates the type of a variable. The required parameter, ''variable'', is any variable that doesn't ..."
  • 20:5620:56, 8 July 2012 diff hist +425 N UCaseCreated page with "UCASE(''string'') '''Description''' UCASE returns string with all of its lowercase characters converted to uppercase. The required parameter, ''string'', is any valid string..."
  • 20:5420:54, 8 July 2012 diff hist +905 N UBoundCreated page with "UBOUND(''array''[, ''dimension'']) '''Description''' UBOUND returns a long value specifying the largest available subscript in the specified dimension of a given array. The ..."
  • 20:4920:49, 8 July 2012 diff hist 0 TypeNameNo edit summary
  • 20:4820:48, 8 July 2012 diff hist +979 N TypeNameCreated page with "TYPENAME(''variable'') '''Description''' TYPENAME returns a string specifying the type of a variable. The required parameter, ''variable'', is any variable. '''Table 24: TY..."
  • 20:4120:41, 8 July 2012 diff hist +1,525 N Try...CatchCreated page with "TRY <br /> :::{''statements''} <br /> :::THROW ''errCode'' <br /> CATCH ''err'' <br /> :::{''statements''} <br /> [FINALLY <br /> :::{''statements''}] <br /> END TRY '''Descr..."
  • 20:3720:37, 8 July 2012 diff hist +433 N TrimCreated page with "TRIM(''string'') '''Description''' TRIM returns a string with all leading and trailing spaces removed. The required parameter, ''string'', is any valid string expression. '..."
  • 20:3520:35, 8 July 2012 diff hist +1,037 N TimeValueCreated page with "TIMEVALUE(''time'') '''Description''' TIMEVALUE returns a time from, ''time'', which is usually a string, but any expression that can represent a time ranging from 0:00:00 (..."
  • 20:3320:33, 8 July 2012 diff hist +714 N TimeSerialCreated page with "TIMESERIAL(''hour'', ''minute'', ''second'') '''Description''' TIMESERIAL returns a time constructed from the given hour, minute, and second. The required parameter, ''hour'..."
  • 20:3020:30, 8 July 2012 diff hist −15 TimeNo edit summary
  • 20:3020:30, 8 July 2012 diff hist +134 TimeNo edit summary
  • 20:2820:28, 8 July 2012 diff hist +390 N TimeCreated page with "TIME '''Description''' TIME returns the current system time. '''Example''' <pre> REM TIME Example 'TIME returns current system time DIM RightNow RightNow = TIME PRINT "The..."
  • 20:2520:25, 8 July 2012 diff hist −2 Language referenceNo edit summary
  • 20:2520:25, 8 July 2012 diff hist 0 TanNo edit summary
  • 20:2420:24, 8 July 2012 diff hist +572 N TanCreated page with "TAN(''number"") '''Description''' TAN calculates the tangent of a number expressing an angle in radians. The required parameter, ''number'', is any numeric expression. The v..."
  • 20:2220:22, 8 July 2012 diff hist +558 Language referenceNo edit summary
  • 20:1620:16, 8 July 2012 diff hist +717 N SysInfoCreated page with "SYSINFO(''number'') '''Description''' SYSINFO returns information about the device. This is not a complete list of return values: see Microsoft’s documentation on GetSyste..."
  • 20:0920:09, 8 July 2012 diff hist +2,014 N SubCreated page with "SUB ''procedurename''[(''arglist'')] <br /> :::[''statements''] <br /> :::[EXIT SUB] <br /> :::[''statements''] <br /> END SUB '''Description''' SUB declares a procedure, ''..."
  • 20:0420:04, 8 July 2012 diff hist +484 N StrReverseCreated page with "STRREVERSE(''string'') '''Description''' STRREVERSE returns a string created by reversing the character order of another string. The required argument, ''string'', is any va..."
  • 20:0320:03, 8 July 2012 diff hist +632 N StringCreated page with "STRING(''number, ''character'') '''Description''' STRING returns a string created by concatenating a given number of a specified character. The required argument, ''number''..."
  • 19:5719:57, 8 July 2012 diff hist +1,079 N StrCompCreated page with "STRCOMP(''string1'', ''string2''[, ''compare'']) '''Description''' STRCOMP compares two strings and returns an integer value which indicates the alphabetical relationship be..."
  • 19:5519:55, 8 July 2012 diff hist +412 N SqrCreated page with "SQR(''number'') '''Description''' SQR returns a double-precision value representing the square root of a number. The required parameter, ''number'', is any valid numeric exp..."
  • 19:5419:54, 8 July 2012 diff hist +835 N SqlOpenDatabaseCreated page with "SqlOpenDatabase(''filename'', ''version'', ''fullname'', ''maxSize'') '''Description''' SQLOPENDATABASE is used to create and open SQLite databases. filename is the actual n..."
  • 19:5219:52, 8 July 2012 diff hist +635 N SqlCreated page with "SQL(''db'', ''sqlList'') '''Description''' The Sql statement is used to send a transaction (a list of SQL commands) to SQLite. ''Db'' is the reference returned by an SQLOPEN..."
  • 19:4819:48, 8 July 2012 diff hist +1,305 N SplitCreated page with "SPLIT(''string''[, ''delimiter''[, ''count''[, ''compare'']]]) '''Description''' SPLIT returns a one-dimensional array of strings of a specified length, created by dividing ..."
  • 19:4319:43, 8 July 2012 diff hist +439 N SpaceCreated page with "SPACE(''number'') '''Description''' SPACE returns a string consisting of a number of spaces. The required argument, ''number'', is any valid numeric expression. '''Example'..."
  • 19:4119:41, 8 July 2012 diff hist +16 SgnNo edit summary
  • 19:4019:40, 8 July 2012 diff hist +4 SinNo edit summary
  • 19:4019:40, 8 July 2012 diff hist +584 N SinCreated page with "SIN(''number'') '''Description''' SIN calculates the sine of a number expressing an angle in radians. The required parameter, number, is any numeric expression. The value re..."
  • 19:3819:38, 8 July 2012 diff hist 0 Language referenceNo edit summary
  • 19:3719:37, 8 July 2012 diff hist +17 N SngBrendon moved page Sng to Sgn current
  • 19:3719:37, 8 July 2012 diff hist 0 m SgnBrendon moved page Sng to Sgn
  • 19:3619:36, 8 July 2012 diff hist +619 N SgnCreated page with "SGN(''number'') '''Description''' SGN returns an integer indicating the sign of a number. The required parameter, number, is any valid numeric expression. If number is less ..."
  • 19:3319:33, 8 July 2012 diff hist +736 N SetTimeoutCreated page with "SETTIMEOUT (''function'', ''milliseconds'') '''Description''' SETTIMEOUT is used to schedule an event for a future time, where function is the name of the SUB or FUNCTION to..."
  • 19:3019:30, 8 July 2012 diff hist +11 SetNo edit summary
  • 19:2819:28, 8 July 2012 diff hist +855 N SetCreated page with "SET ''objectvariable'' = {''objectexpression'' | NOTHING} '''Description''' SET is used to assign an object reference to a variable. The required component, ''objectvariable..."
  • 19:2519:25, 8 July 2012 diff hist +1,509 Select CaseNo edit summary
  • 19:2119:21, 8 July 2012 diff hist +8 Select CaseNo edit summary
  • 19:2019:20, 8 July 2012 diff hist −95 Select CaseNo edit summary
  • 19:1819:18, 8 July 2012 diff hist +417 N Select CaseCreated page with "<pre> SELECT CASE ''testexpression'' [CASE ''expressionlistA'' [''statementsA'']] [CASE ''expressionlistB'' ..."
  • 19:1719:17, 8 July 2012 diff hist +4 SecondNo edit summary
  • 19:1619:16, 8 July 2012 diff hist +659 N SecondCreated page with "SECOND(''time'') '''Description''' SECOND returns a whole number ranging from 0 to 59 that represents the second of the minute, of a given time. The required parameter, time..."
  • 19:1219:12, 8 July 2012 diff hist +1 RtrimNo edit summary
  • 19:1119:11, 8 July 2012 diff hist +411 N RtrimCreated page with "RTRIM(''string'') '''Description''' RTRIM returns string with all trailing spaces removed. The required parameter, ''string'', is any valid string expression. '''Example'' ..."
  • 19:0819:08, 8 July 2012 diff hist +702 N RoundCreated page with "ROUND(''number''[, ''fractionaldigits'']) '''Description''' ROUND returns a number that has been rounded to the specified number of decimal places. The required argument, ''..."
  • 19:0519:05, 8 July 2012 diff hist −2 Language referenceNo edit summary
  • 19:0419:04, 8 July 2012 diff hist +574 N RndCreated page with "RND '''Description''' RND returns a single-precision number from a random sequence between 0 and 1. The value is always random: no seed needs to be supplied. '''Example'''..."
  • 19:0119:01, 8 July 2012 diff hist +22 RightNo edit summary
  • 19:0019:00, 8 July 2012 diff hist +795 N RightCreated page with "RIGHT(''string, ''length'') '''Description''' RIGHT returns a string containing a number of characters from the right end of a string. The required parameter, string, is any..."
  • 18:5818:58, 8 July 2012 diff hist +499 N RGBCreated page with "RGB(''red'', ''green'', ''blue'') '''Description''' RGB returns a whole number representing an RGB color value. ''red'', ''green'' and ''blue'' are numbers from 0-255 repre..."
  • 18:5618:56, 8 July 2012 diff hist +1,414 N ReplaceCreated page with "REPLACE(''target'', ''find'', ''source''[, ''start''[, ''count''[, ''compare'']]]) '''Description''' REPLACE returns a string which has had one substring replaced by another..."
  • 18:5218:52, 8 July 2012 diff hist +666 N RemCreated page with "REM ''remarks'' '''remarks'' '''Description''' REM is used to include remarks, or comments, as text which is never executed, in a program. The optional component, ''remarks..."
  • 18:4918:49, 8 July 2012 diff hist +910 N ReDimCreated page with "REDIM [PRESERVE] nameA[([subscriptA[, subscriptB[, <br /> :::subscriptC...]]])][, nameB...[, nameC...[...]]] '''Description''' REDIM is used to reallocate storage space for ..."
  • 18:4618:46, 8 July 2012 diff hist +755 N PrintCreated page with "PRINT [''expressionA''[, ''expressionB''[, ''expressionC''[, ...]]]] '''Description''' PRINT writes text to the output window. PRINT writes up to 20 comma-delimited expressi..."
  • 18:4418:44, 8 July 2012 diff hist +673 N OrCreated page with "''result'' = ''x'' OR ''y'' '''Description''' OR returns the logical disjunction of two expressions. ''result'' is TRUE, if one or both expressions ''x'' and ''y'' evaluate ..."
  • 18:3718:37, 8 July 2012 diff hist +590 N OctCreated page with "OCT(''number'') '''Description''' OCT returns a string representation of the octal (base 8) value of a number. The required parameter, ''number'', is any valid numeric expre..."
  • 18:3218:32, 8 July 2012 diff hist +342 N NSBVersionCreated page with "NSBVERSION '''Description''' NSBVersion returns a string with the current version of NS Basic/X that is running. This global property can be read, but not set. '''Example''..."
  • 18:3118:31, 8 July 2012 diff hist +409 N NowCreated page with "NOW '''Description''' NOW returns the current date and time according to the date and time setting of your computer. '''Example''' <pre> REM NOW example PRINT FormatDateTi..."
  • 18:2818:28, 8 July 2012 diff hist −2 Language referenceNo edit summary
  • 18:2718:27, 8 July 2012 diff hist +16 NotNo edit summary
  • 18:2618:26, 8 July 2012 diff hist +712 N NotCreated page with "''result'' = NOT ''expression'' '''Description''' NOT returns the logical negation of an expression. The required argument, ''expression'', is any valid expression. result i..."
  • 18:2118:21, 8 July 2012 diff hist +2 MsgBoxNo edit summary
  • 18:2118:21, 8 July 2012 diff hist +21 MsgBoxNo edit summary
  • 18:1418:14, 8 July 2012 diff hist +1,239 N MsgBoxCreated page with "MSGBOX(''prompt''[, ''okCancel'']) '''Description''' MSGBOX opens a dialog box, and waits for the user to tap on a button. The return value is an integer that indicates whic..."
  • 18:0818:08, 8 July 2012 diff hist +548 N MonthNameCreated page with "MONTHNAME(''month''[, ''abbreviate'']) '''Description''' MONTHNAME returns the string name of the given month. The required parameter, ''month'', is a numeric expression ran..."
  • 18:0518:05, 8 July 2012 diff hist +4 MonthNo edit summary
  • 18:0518:05, 8 July 2012 diff hist +658 N MonthCreated page with "MONTH(''date) '''Description''' MONTH returns a whole number ranging from 1 to 12 that represents the month of the year, of a given date.The required parameter, date, can be..."
  • 18:0218:02, 8 July 2012 diff hist +956 Language referenceNo edit summary
  • 17:5017:50, 8 July 2012 diff hist +545 N ModCreated page with "''result'' = ''x'' MOD ''y'' '''Description''' MOD divides ''x'' by ''y'' and returns the integer part of the remainder. The required parameters, ''x'' and ''y'', are any va..."
  • 17:4817:48, 8 July 2012 diff hist −2 Language referenceNo edit summary
  • 17:4717:47, 8 July 2012 diff hist +674 N MinuteCreated page with "MINUTE(''time'') '''Description''' MINUTE returns a whole number ranging from 0 to 59 that represents the minute of the hour, of a given time. The required parameter, ''time..."
  • 17:4417:44, 8 July 2012 diff hist +948 N MidCreated page with "MID(''string'', ''start''[, ''length'']) '''Description''' MID returns a string containing characters from the middle of a string. The required parameter, ''string'', is any..."
  • 17:4217:42, 8 July 2012 diff hist +412 N LTrimCreated page with "LTRIM(''string'') '''Description''' LTRIM returns a string with all leading spaces removed. The required parameter, ''string'', is any valid string expression. '''Example''..."
  • 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

2 July 2012

29 June 2012

22 June 2012

(newest | oldest) View ( | older 250) (20 | 50 | 100 | 250 | 500)