New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 09:46, 21 November 2024WAVE (hist | edit) ‎[21,437 bytes]A740g (talk | contribs) (Initial version)
  • 17:59, 18 November 2024Constants (hist | edit) ‎[22,046 bytes]RhoSigma (talk | contribs) (Created page with "Starting with '''QB64-PE v4.0.0''' the compiler provides a huge set of preset CONST values. The following list of constants is available for use in every compiled program. Note that the names of all these preset constants have to be preceeded with an underscore, just like all the other QB64(PE) specific keywords. Libray makers can use the the also new '''_QB64PE_''' precompiler flag in their include files to find out if these new preset constants are available for u...")
  • 20:44, 14 November 2024TOSTR$ (hist | edit) ‎[6,535 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_TOSTR$}} The '''_TOSTR$''' function returns the STRING representation of a numerical value. It's a successor of the legacy STR$ function. {{PageSyntax}} : result$ = _TOSTR$({{Parameter|value}}[, {{Parameter|digits}}]) {{PageParameters}} * {{Parameter|value}} is any numerical type value to convert. * {{Parameter|digits}} is optional, if given it determines the desired number of significant digits for floating point values. This argument has...")
  • 15:06, 3 November 2024MAX (hist | edit) ‎[1,755 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_MAX}} The '''_MAX''' function returns the greater of two given numeric values. {{PageSyntax}} : {{Parameter|maximum##}} = _MAX({{Parameter|value1}}, {{Parameter|value2}}) {{PageParameters}} * {{Parameter|value1}} and {{Parameter|value2}} are the two numbers to compare, any integer or floating point type is supported. * {{Parameter|maximum##}} is the greater of both values returned as _FLOAT type (suffix ##). {{PageDescription}} * The functio...")
  • 15:01, 3 November 2024MIN (hist | edit) ‎[1,752 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_MIN}} The '''_MIN''' function returns the lesser of two given numeric values. {{PageSyntax}} : {{Parameter|minimum}} = _MIN({{Parameter|value1}}, {{Parameter|value2}}) {{PageParameters}} * {{Parameter|value1}} and {{Parameter|value2}} are the two numbers to compare, any integer or floating point type is supported. * {{Parameter|minimum}} is the lesser of both values returned as _FLOAT type. {{PageDescription}} * The function compares the giv...")
  • 15:47, 7 October 2024CONSOLEFONT (hist | edit) ‎[2,648 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_CONSOLEFONT}} The '''_CONSOLEFONT''' statement is used to change the text font used in Console Windows or change its size. {{PageSyntax}} : _CONSOLEFONT {{Parameter|fontName$}}, {{Parameter|fontSize%}} {{PageParameters}} * {{Parameter|fontName$}} is the name of the desired font. Note that only a few fonts are allowed, in most standard systems it will probably only be ''Consolas'' and ''Lucida Console''. ** To see a complete list of names avail...")
  • 13:58, 4 October 2024CONSOLECURSOR (hist | edit) ‎[1,816 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_CONSOLECURSOR}} The '''_CONSOLECURSOR''' statement is used to switch the text cursor in Console Windows off/on or change its size. {{PageSyntax}} : _CONSOLECURSOR {{Parameter|{_HIDE|_SHOW}}}[, {{Parameter|size%}}] {{PageParameters}} * {{Parameter|_HIDE}} or {{Parameter|_SHOW}} switch the text cursor off or on respectively, the default at program start is on. * The optional {{Parameter|size%}} is specified as percentage value (0-100) of the con...")
  • 13:07, 2 October 2024MOUSEHIDDEN (hist | edit) ‎[2,554 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE: _MOUSEHIDDEN}} The '''_MOUSEHIDDEN''' function returns a boolean value according to the current mouse cursor state (hidden or visible). {{PageSyntax}} : {{Parameter|result%}} = _MOUSEHIDDEN {{PageParameters}} * {{Parameter|result%}} a boolean value reflecting the current mouse cursor state: ** is true (-1), if the mouse cursor is currently hidden ** is false (0), if the mouse cursor is currently visible {{PageDescription}} * This function is esp...")