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

  • 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..."
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)