New pages

Jump to navigation Jump to search
New pages
Hide registered users | Hide bots | Show redirects
  • 16:08, 8 December 2024CAST (hist | edit) ‎[3,557 bytes]A740g (talk | contribs) (Initial version)
  • 13:14, 8 December 2024IIF (hist | edit) ‎[3,751 bytes]A740g (talk | contribs) (Initial version)
  • 22:40, 7 December 2024SNDRAWBATCH (hist | edit) ‎[5,582 bytes]A740g (talk | contribs) (Initial version)
  • 06:25, 4 December 2024LOGMINLEVEL (hist | edit) ‎[3,012 bytes]Offbyone (talk | contribs) (Created page with "{{DISPLAYTITLE:_LOGMINLEVEL}} The _LOGMINLEVEL function returns the current minimum logging level that is being output. {{PageSyntax}} : {{Parameter|level&}} = _LOGMINLEVEL {{PageDescription}} The purpose of _LOGMINLEVEL is to allow programs to skip generating expensive logging if that logging would not be output anywhere. For example, you may have a very large array of integers that you want to log fairly often - generating the strings of the log messages...")
  • 05:58, 4 December 2024LOGWARN (hist | edit) ‎[1,057 bytes]Offbyone (talk | contribs) (Created page with "{{DISPLAYTITLE:_LOGWARN}} The _LOGWARN statement writes a log message at the Warning level. {{PageSyntax}} : _LOGWARN {{Parameter|message}} {{PageParameters}} * {{Parameter|message}} is a string to write to the log output. {{PageDescription}} See the page on the Logging system for more detailed usage information. {{PageAvailability}} <!-- QB64 = a version or none, QBPE = a version or all, Platforms = yes or no --> <gallery widths="48px" heights="48px" mod...")
  • 05:57, 4 December 2024LOGTRACE (hist | edit) ‎[1,057 bytes]Offbyone (talk | contribs) (Created page with "{{DISPLAYTITLE:_LOGTRACE}} The _LOGTRACE statement writes a log message at the Trace level. {{PageSyntax}} : _LOGTRACE {{Parameter|message}} {{PageParameters}} * {{Parameter|message}} is a string to write to the log output. {{PageDescription}} See the page on the Logging system for more detailed usage information. {{PageAvailability}} <!-- QB64 = a version or none, QBPE = a version or all, Platforms = yes or no --> <gallery widths="48px" heights="48px" mo...")
  • 05:53, 4 December 2024LOGERROR (hist | edit) ‎[1,512 bytes]Offbyone (talk | contribs) (Created page with "{{DISPLAYTITLE:_LOGERROR}} The _LOGERROR statement writes a log message at the Error level with an accompanying stacktrace. {{PageSyntax}} : _LOGERROR {{Parameter|message}} {{PageParameters}} * {{Parameter|message}} is a string to write to the log output. {{PageDescription}} See the page on the Logging system for more detailed usage information. Log messages at the Error level include a stacktrace at the point of the log statement which lists the subs and...")
  • 05:35, 4 December 2024LOGINFO (hist | edit) ‎[1,065 bytes]Offbyone (talk | contribs) (Created page with "{{DISPLAYTITLE:_LOGINFO}} The _LOGINFO statement writes a log message at the Information level. {{PageSyntax}} : _LOGINFO {{Parameter|message}} {{PageParameters}} * {{Parameter|message}} is a string to write to the log output. {{PageDescription}} See the page on the Logging system for more detailed usage information. {{PageAvailability}} <!-- QB64 = a version or none, QBPE = a version or all, Platforms = yes or no --> <gallery widths="48px" heights="48px"...")
  • 05:33, 4 December 2024Logging (hist | edit) ‎[9,392 bytes]Offbyone (talk | contribs) (Created page with "'''QB64-PE''' starting in '''v4.0.0''' includes built-in logging support, allowing you to capture and display logging from '''QB64-PE''' programs. This includes both logging from QB64-PE internals ("libqb") and the program itself (via the provided statements). {| align="right" style="max-width:25%;" | __TOC__ |} == Purpose == == Usage == == IDE == == Scopes == == Environment Variables == == Stacktrace == == Examples ==")
  • 19:46, 3 December 2024SATURATION32 (hist | edit) ‎[3,826 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_SATURATION32}} The _SATURATION32 function returns the saturation value ([https://www.learnui.design/blog/the-hsb-color-system-practicioners-primer.html HSB colorspace]) of a given 32-bit ''ARGB'' color. {{PageSyntax}} : {{Parameter|saturation#}} = _SATURATION32({{Parameter|argbColor~&}}) {{PageParameters}} * {{Parameter|argbColor~&}} is the 32-bit ''ARGB'' color value to retrieve the saturation value from. ** ''ARGB'' colors are returned by va...")
  • 19:45, 3 December 2024HUE32 (hist | edit) ‎[3,753 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_HUE32}} The _HUE32 function returns the hue value ([https://www.learnui.design/blog/the-hsb-color-system-practicioners-primer.html HSB colorspace]) of a given 32-bit ''ARGB'' color. {{PageSyntax}} : {{Parameter|hue#}} = _HUE32({{Parameter|argbColor~&}}) {{PageParameters}} * {{Parameter|argbColor~&}} is the 32-bit ''ARGB'' color value to retrieve the hue value from. ** ''ARGB'' colors are returned by various functions, such as _PALETTECOLOR (...")
  • 19:43, 3 December 2024BRIGHTNESS32 (hist | edit) ‎[3,755 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_BRIGHTNESS32}} The _BRIGHTNESS32 function returns the brightness value ([https://www.learnui.design/blog/the-hsb-color-system-practicioners-primer.html HSB colorspace]) of a given 32-bit ''ARGB'' color. {{PageSyntax}} : {{Parameter|brightness#}} = _BRIGHTNESS32({{Parameter|argbColor~&}}) {{PageParameters}} * {{Parameter|argbColor~&}} is the 32-bit ''ARGB'' color value to retrieve the brightness value from. ** ''ARGB'' colors are returned by va...")
  • 12:48, 3 December 2024HSBA32 (hist | edit) ‎[8,165 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_HSBA32}} The '''_HSBA32''' function specifies a color using the [https://www.learnui.design/blog/the-hsb-color-system-practicioners-primer.html HSB colorspace] and returns the 32-bit ''ARGB'' color value representing the color with the specified hue, saturation, brightness and opacity level (alpha channel). {{PageSyntax}} : {{Parameter|color32value~&}} = _HSBA32({{Parameter|hue#}}, {{Parameter|saturation#}}, {{Parameter|brightness#}}, {{Parameter|al...")
  • 23:00, 2 December 2024HSB32 (hist | edit) ‎[7,746 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_HSB32}} The '''_HSB32''' function specifies a color using the [https://www.learnui.design/blog/the-hsb-color-system-practicioners-primer.html HSB colorspace] and returns the 32-bit ''ARGB'' color value representing the color with the specified hue, saturation and brightness. {{PageSyntax}} : {{Parameter|color32value~&}} = _HSB32({{Parameter|hue#}}, {{Parameter|saturation#}}, {{Parameter|brightness#}}) {{PageParameters}} * {{Parameter|hue#}} specif...")
  • 17:05, 2 December 2024CLAMP (hist | edit) ‎[2,252 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_CLAMP}} The '''_CLAMP''' function forces the given numeric value into a specific range, returning either the given value as is, or the closest boundary if the range is exceeded. {{PageSyntax}} : {{Parameter|clamped##}} = _CLAMP({{Parameter|value}}, {{Parameter|minVal}}, {{Parameter|maxVal}}) {{PageParameters}} * {{Parameter|value}} is the number to clamp, any integer or floating point type is supported. * {{Parameter|minVal}} is the minimum range...")
  • 18:37, 25 November 2024DECODEURL$ (hist | edit) ‎[1,395 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_DECODEURL$}} The '''_DECODEURL$''' function is the counterpart for _ENCODEURL$, it returns the decoded plain text URL of the given encoded URL. {{PageSyntax}} : result$ = _DECODEURL$({{Parameter|url$}}) {{PageParameters}} * {{Parameter|url$}} is the URL to decode as variable or literal STRING. {{PageDescription}} * URL decoding may be required when parsing downloaded files for additional links and retrieving its add...")
  • 18:33, 25 November 2024ENCODEURL$ (hist | edit) ‎[2,282 bytes]RhoSigma (talk | contribs) (Created page with "{{DISPLAYTITLE:_ENCODEURL$}} The '''_ENCODEURL$''' function returns the so called percent encoded representation of the given URL. {{PageSyntax}} : result$ = _ENCODEURL$({{Parameter|url$}}) {{PageParameters}} * {{Parameter|url$}} is the URL to encode as variable or literal STRING. {{PageDescription}} * URL encoding may be required before trying to retrieve it using the _OPENCLIENT("HTTP:url") command. * Proper encoding is under the obligatio...")
  • 09:46, 21 November 2024WAVE (hist | edit) ‎[21,398 bytes]A740g (talk | contribs) (Initial version)
  • 17:59, 18 November 2024Constants (hist | edit) ‎[22,346 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,790 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,767 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,764 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,547 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...")