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).
- 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:09, 30 April 2024 A740g talk contribs created page ORELSE (Initial version.)
- 18:33, 30 April 2024 A740g talk contribs created page ANDALSO (Initial version.)
- 15:34, 30 April 2024 A740g talk contribs created page NEGATE (Initial version.)
- 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.)
- 04:14, 26 February 2024 TheEnemy talk contribs created page Struct (Redirected page to TYPE) Tag: New redirect
- 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...")
- 04:28, 10 February 2024 TheEnemy talk contribs created page Array (Redirected page to Arrays) Tag: New redirect
- 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...")
- 20:42, 2 February 2024 RhoSigma talk contribs created page CRC32 (Created page with "{{DISPLAYTITLE: _CRC32}} The '''_CRC32''' function returns the Crc-32 checksum of any arbitrary string. {{PageSyntax}} : {{Parameter|chksum~&}} = _CRC32({{Parameter|dataString$}}) {{PageParameters}} * {{Parameter|chksum~&}} is the _UNSIGNED LONG checksum returned (zero, if the given {{Parameter|dataString$}} was empty). * {{Parameter|dataString$}} is any literal or variable STRING to build the checksum from. {{P...")
- 16:08, 2 February 2024 RhoSigma talk contribs created page ADLER32 (Created page with "{{DISPLAYTITLE: _ADLER32}} The '''_ADLER32''' function returns the Adler-32 checksum of a string. {{PageSyntax}} : {{Parameter|chksum~&}} = _ADLER32({{Parameter|dataString$}}) {{PageParameters}} * {{Parameter|chksum~&}} is the _UNSIGNEDLONG checksum returned (zero, if the given {{Parameter|dataString$}} was empty). * {{Parameter|dataString$}} is any literal or variable STRING to build the checksum from. {{PageDescription}} {{PageExam...")
- 14:03, 31 January 2024 RhoSigma talk contribs deleted page FILE$ (function) (Redundant with FILELIST$_(function))
- 14:02, 31 January 2024 RhoSigma talk contribs deleted page FILE$ (Redundant with FILELIST$)
- 20:32, 26 January 2024 RhoSigma talk contribs deleted page Type (Redundant with Variable Types)
- 16:36, 5 January 2024 RhoSigma talk contribs created page SaveImage SUB (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.9.0''' the functionality described here was superseded by _SAVEIMAGE.</center> ---- ----<br> <center>The '''SaveImage SUB''' program to create Bitmaps of other type Images or Screenshots</center> <center>'''Bitmaps'''...")
- 00:33, 3 January 2024 A740g talk contribs created page FULLPATH$ (Initial _FULLPATH$ documentation)
- 23:58, 2 January 2024 A740g talk contribs created page FILES$ (Initial _FILES$ documentation)
- 09:43, 15 December 2023 RhoSigma talk contribs created page EMBEDDED$ (Created page with "{{DISPLAYTITLE:_EMBEDDED$}} The '''_EMBEDDED$''' function is used to recall the data of a file which was earlier embedded into the EXE file using the $EMBED metacommand. You can roughly compare this to a RESTORE to any DATA block and then using READ to retrieve the data. {{PageSyntax}} : {{Parameter|filedata$}} = _EMBEDDED$("{{Parameter|handle}}") {{PageParameters}} ; IMPORTANT :* The parameter {{Parameter|handle}} must be given as a literal strin...")
- 00:02, 15 December 2023 RhoSigma talk contribs created page $EMBED (Created page with "The '''$EMBED''' metacommand can embed any designated file (e.g. images, sounds, fonts and all other file types) into the compiled EXE file. You can roughly compare this to converting and placing a file's contents into DATA lines, but '''$EMBED''' obviously is much more convenient. {{PageSyntax}} : $EMBED:'{{Parameter|filename}}','{{Parameter|handle}}' {{PageParameters}} ; IMPORTANT : *Both parameters must be enclosed in single quotes and given as literal str...")
- 22:33, 6 October 2023 User account Grymmjack talk contribs was created by RhoSigma talk contribs
- 21:57, 24 September 2023 RhoSigma talk contribs deleted page QB 4.5 Library Ports For QB64 (obsolete)
- 09:38, 24 September 2023 RhoSigma talk contribs deleted page Category:Historic
- 09:36, 24 September 2023 RhoSigma talk contribs removed protection from Category:Historic
- 09:31, 24 September 2023 RhoSigma talk contribs protected ThirtyTwoBit SUB [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 09:31, 24 September 2023 RhoSigma talk contribs protected ThirtyTwoBit MEM SUB [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 09:30, 24 September 2023 RhoSigma talk contribs protected Program ScreenShots [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 09:30, 24 September 2023 RhoSigma talk contribs protected Bitmaps [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 09:29, 24 September 2023 RhoSigma talk contribs protected Historic Pages [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 07:53, 24 September 2023 RhoSigma talk contribs created page Historic Pages (Created page with ";*Archived pages:The informations in these pages are outdated and methods described here may be in whole or part invalid for the current versions of QB64-PE. :*However, these old pages will be preserved and collected in this category for reference/educational purposes only. ---- = B = == B == === B === ==== B ====")
- 08:49, 22 May 2023 A740g talk contribs created page UCHARPOS (Initial version)
- 06:41, 30 April 2023 A740g talk contribs created page UPRINTSTRING (Initial version)
- 05:53, 30 April 2023 A740g talk contribs created page ULINESPACING (Initial version)
- 04:43, 30 April 2023 A740g talk contribs created page UPRINTWIDTH (Initial version)
- 03:13, 30 April 2023 A740g talk contribs created page UFONTHEIGHT (Initial version)
- 21:56, 27 March 2023 RhoSigma talk contribs created page MIDDLE (Redirected page to SCREENMOVE) Tag: New redirect
- 13:57, 20 March 2023 RhoSigma talk contribs created page ONLY (Created page with "The '''ONLY''' statement is used as additional option for other keywords, please select a page below. {{PageSeeAlso}} * $CONSOLE (Metacommand) * GLRENDER (OpenGL statement) {{PageNavigation}}")