All public logs
Jump to navigation
Jump to search
Combined display of all available logs of QB64 Phoenix Edition Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 19:46, 3 December 2024 RhoSigma talk contribs created page SATURATION32 (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 2024 RhoSigma talk contribs created page HUE32 (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 2024 RhoSigma talk contribs created page BRIGHTNESS32 (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 2024 RhoSigma talk contribs created page HSBA32 (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 2024 RhoSigma talk contribs created page HSB32 (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 2024 RhoSigma talk contribs created page CLAMP (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 2024 RhoSigma talk contribs created page DECODEURL$ (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 2024 RhoSigma talk contribs created page ENCODEURL$ (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...")
- 17:59, 18 November 2024 RhoSigma talk contribs created page Constants (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 2024 RhoSigma talk contribs created page TOSTR$ (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 2024 RhoSigma talk contribs created page MAX (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 2024 RhoSigma talk contribs created page MIN (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 2024 RhoSigma talk contribs created page CONSOLEFONT (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 2024 RhoSigma talk contribs created page CONSOLECURSOR (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 2024 RhoSigma talk contribs created page MOUSEHIDDEN (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...")
- 17:19, 26 September 2024 RhoSigma talk contribs deleted page $VIRTUALKEYBOARD (no longer part of the language)
- 15:28, 25 September 2024 RhoSigma talk contribs deleted page IS (unused redirect)
- 00:23, 24 August 2024 RhoSigma talk contribs created page NEWHANDLER (Redirected page to ON ERROR) Tag: New redirect
- 00:22, 24 August 2024 RhoSigma talk contribs created page LASTHANDLER (Redirected page to ON ERROR) Tag: New redirect
- 17:28, 21 July 2024 RhoSigma talk contribs protected SaveIcon32 [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 17:27, 21 July 2024 RhoSigma talk contribs protected GIF Creation [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 10:18, 21 July 2024 RhoSigma talk contribs protected Icons and Cursors [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 10:17, 21 July 2024 RhoSigma talk contribs protected Creating Icons from Bitmaps [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 10:16, 21 July 2024 RhoSigma talk contribs protected Creating Icon Bitmaps [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:28, 19 July 2024 RhoSigma talk contribs changed protection settings for Template:CodeStart [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:28, 19 July 2024 RhoSigma talk contribs changed protection settings for Template:CodeEnd [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:27, 19 July 2024 RhoSigma talk contribs changed protection settings for Template:Cm [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:27, 19 July 2024 RhoSigma talk contribs changed protection settings for Template:Cl [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:26, 19 July 2024 RhoSigma talk contribs changed protection settings for Template:Cb [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 23:19, 18 July 2024 RhoSigma talk contribs changed protection settings for Template:CodeStart [Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite) (hist)
- 23:18, 18 July 2024 RhoSigma talk contribs changed protection settings for Template:CodeEnd [Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite) (hist)
- 23:18, 18 July 2024 RhoSigma talk contribs changed protection settings for Template:Cm [Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite) (hist)
- 23:17, 18 July 2024 RhoSigma talk contribs changed protection settings for Template:Cl [Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite) (hist)
- 23:16, 18 July 2024 RhoSigma talk contribs changed protection settings for Template:Cb [Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite) (hist)
- 10:23, 15 June 2024 RhoSigma talk contribs protected Template:PageReferences [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 10:22, 15 June 2024 RhoSigma talk contribs created page Template:PageReferences (Created page with "== QB64 Programming References == <center>'''Wiki Pages'''</center> <center>Main Page with Articles and Tutorials</center> <center>QB64 specific keywords (alphabetical)</center> <center>Original QBasic keywords (alphabetical)</center> <center>Keyword Reference - Alphabetical#QB64_OpenGL_keywords|QB64 OpenGL keywords (alphabetical)...")
- 16:19, 30 May 2024 RhoSigma talk contribs created page User:RhoSigma/Test (Created page with "<!DOCTYPE html> <html> <head> <title>GetFileMD5</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> This file is deliberately empty.: </style> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <p><em><a href="_Md5_Contents.html">back to Table of Contents</a></em></p> <hr /> <h2>GetFileMD5$ <em>(function)</em></h2> <p>Compute the MD5 Message-Digest of the specified file. The file can contain any...")
- 10:48, 21 May 2024 RhoSigma talk contribs deleted page Array (Page serves no purpose other than beeing a serach alias (please use fulltext search for that))
- 10:47, 21 May 2024 RhoSigma talk contribs deleted page Struct (Page serves no purpose other than beeing a serach alias (please use fulltext search for that))
- 19:37, 6 April 2024 RhoSigma talk contribs protected Download [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 19:37, 6 April 2024 RhoSigma talk contribs created page Download (Created page with "---- ---- <center>'''{{Text|Attention!! - This page is outdated and provided for reference and/or education only.|red}}'''</center> <center>(Return to historic Table of Contents)</center> ---- <center>Starting with '''QB64-PE v3.5.0''' the functionality to make HTTP requests is built-in (see here).</center> ---- ----<br> :'''HTTP/1.1''' protocol downloads can be done using a '''GET''' request using the following format without HT...")
- 17:37, 6 April 2024 RhoSigma talk contribs protected SaveImage SUB [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 17:37, 6 April 2024 RhoSigma talk contribs protected FILELIST$ [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 17:36, 6 April 2024 RhoSigma talk contribs protected FILELIST$ (function) [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 23:06, 27 February 2024 RhoSigma talk contribs deleted page DECLARE DYNAMIC LIBRARY (Obsolete, relevant content was merged into DECLARE LIBRARY.)
- 23:46, 15 February 2024 RhoSigma talk contribs created page WRITEFILE (Created page with "{{DISPLAYTITLE: _WRITEFILE}} The '''_WRITEFILE''' function writes a string into a new file, overwriting an existing file of the same name. It does OPEN, PUT and CLOSE the file in one run. It's the counterpart to _READFILE$. {{PageSyntax}} : {{Parameter|success%}} = _WRITEFILE({{Parameter|fileSpec$}}, {{Parameter|contents$}}) {{PageParameters}} * {{Parameter|success%}} is an INTEGER return value, it shows whether the write operation was success...")
- 18:28, 13 February 2024 RhoSigma talk contribs created page READFILE$ (Created page with "{{DISPLAYTITLE: _READFILE$}} The '''_READFILE$''' function returns the complete contents of a file in a single string, but without the usual overhead. It does OPEN, GET and CLOSE the file in one run. {{PageSyntax}} : {{Parameter|content$}} = _READFILE$({{Parameter|fileSpec$}}) {{PageParameters}} * {{Parameter|content$}} is the entire file contents returned as STRING. Maybe empty, if the file specified was an empty file, or if the program is contin...")
- 13:33, 8 February 2024 RhoSigma talk contribs created page $INCLUDEONCE (Created page with "The '''$INCLUDEONCE''' metacommand, when placed in include files, prevents that the file's contents can be injected multiple time into a program. {{PageSyntax}} : $INCLUDEONCE {{PageDescription}} * This Metacommand can be placed everywhere in an include file, but must be the only thing in the line, hence no additional whitespace or comments. * If placed in the main program, $INCLUDEONCE does nothing and is simply ignored without error. {{PageAvailability}}...")
- 23:14, 7 February 2024 User account TheEnemy talk contribs was created by RhoSigma talk contribs
- 00:20, 4 February 2024 RhoSigma talk contribs created page MD5$ (Created page with "{{DISPLAYTITLE: _MD5$}} The '''_MD5$''' function returns the MD5 hash value of any arbitrary string. {{PageSyntax}} : {{Parameter|md5hash$}} = _MD5$({{Parameter|dataString$}}) {{PageParameters}} * {{Parameter|md5hash$}} is the hash value returned as STRING, if the given {{Parameter|dataString$}} was empty the correct hash value is: ** D41D8CD98F00B204E9800998ECF8427E * {{Parameter|dataString$}} is any literal or variable STRING to build...")