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).
- 00:13, 25 February 2023 RhoSigma talk contribs deleted page SEEK (statement) (content moved)
- 18:06, 24 February 2023 RhoSigma talk contribs created page ASC (function) (Created page with "The ASC function returns the ASCII code number of a certain STRING text character or a keyboard press. {{PageSyntax}} : {{Parameter|code%}} = ASC({{Parameter|text$}}[, {{Parameter|position%}}]) {{PageDescription}} * {{Parameter|text$}} string character parameter must have a length of at least 1 byte or an error occurs. * '''In QB64''' the optional byte {{Parameter|position%}} INTEGER parameter greater than 0 can specify the ASCII code o...")
- 18:04, 24 February 2023 RhoSigma talk contribs created page CLIPBOARD$ (function) (Created page with "{{DISPLAYTITLE:_CLIPBOARD$}} The _CLIPBOARD$ function returns the current Operating System's clipboard contents as a STRING. {{PageSyntax}} :{{Parameter|result$}} = _CLIPBOARD$ {{PageDescription}} * Text returned can contain the entire contents of a copied file or web page or text from a previous _CLIPBOARD$ statement. * The string returned can also contain formatting like CRLF (CHR$(13) + CHR$(10)) end of line characte...")
- 18:01, 24 February 2023 RhoSigma talk contribs created page MID$ (function) (Created page with "The MID$ function returns a portion of a string. {{PageSyntax}} : {{Parameter|portion$}} = MID$({{Parameter|stringValue$}}, {{Parameter|startPosition%}}[, {{Parameter|bytes%}}]) {{PageParameters}} * {{Parameter|stringValue$}} can be any literal or variable non-empty STRING value. Use LEN to check the length of a string. * {{Parameter|startPosition%}} designates the non-zero position of the first character to be returned by the function. * {...")
- 17:59, 24 February 2023 RhoSigma talk contribs created page SEEK (function) (Created page with "The '''SEEK''' function returns the current byte or record position in a file. {{PageSyntax}} :: byte = SEEK(filenumber&) * Filenumber is the number of an OPEN file in any mode. * In RANDOM files SEEK returns the current record position. * In BINARY or sequencial files SEEK returns the current byte position(first byte = 1). * Since the first file position is 1 it may require adding one to an offset value when documentation uses that position as 0. * Devic...")
- 17:23, 24 February 2023 RhoSigma talk contribs deleted page ON TIMER (n) (redundant page, use ON TIMER(n) instead)
- 17:23, 24 February 2023 RhoSigma talk contribs deleted page ON STRIG (n) (redundant page, use ON STRIG(n) instead)
- 17:22, 24 February 2023 RhoSigma talk contribs deleted page ON KEY (n) (redundant page, use ON KEY(n) instead)
- 17:21, 24 February 2023 RhoSigma talk contribs deleted page TIMER (statement) (content moved)
- 14:07, 24 February 2023 RhoSigma talk contribs created page TIMER (function) (Created page with "The '''TIMER''' function returns the number of seconds past the previous midnite down to an accuracy of 1/18th of a second. {{PageSyntax}} ;QuickBASIC:seconds! = TIMER ;QB64:seconds# = TIMER[(''accuracy!'')] {{PageDescription}} * TIMER return values range from 0 at midnight to 86399! A comparison value must stay within that range! * INTEGER or LONG second values range from 0 at midnight to 86399 seconds each day. * QBasic can return SINGLE values down to...")
- 09:31, 13 February 2023 RhoSigma talk contribs protected Category:Historic [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)
- 09:24, 13 February 2023 RhoSigma talk contribs changed protection settings for Template:PreEnd [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 00:20, 4 February 2023 RhoSigma talk contribs created page Quick Reference - Tables (Created page with "=== QB64 Variable Types === {{DataTypePlugin}} === OpenGL Types vs. C/C++ and QB64 === {{OpenGLTypesPlugin}} === Relational Operations === {{RelationalOperationsPlugin}} === Logical Operations === {{LogicalTruthPlugin}} === Formatted Print Symbols === {{PrintUsingPlugin}}")
- 18:08, 29 January 2023 RhoSigma talk contribs deleted page PDS (7.1) Procedures (obsolete redundant page, see PDS(7.1) Procedures instead)
- 18:08, 29 January 2023 RhoSigma talk contribs deleted page VB Procedures (obsolete redundant page, see PDS(7.1) Procedures instead)
- 03:23, 28 January 2023 RhoSigma talk contribs deleted page Category:Final
- 03:23, 28 January 2023 RhoSigma talk contribs deleted page Category:Latest
- 03:22, 28 January 2023 RhoSigma talk contribs deleted page Template:PageErrors (deprecated)
- 03:22, 28 January 2023 RhoSigma talk contribs deleted page Template:PageNotes (deprecated)
- 11:22, 26 January 2023 RhoSigma talk contribs deleted page SCREEN (statement) (obsolet page, see SCREEN instead)
- 01:02, 25 January 2023 RhoSigma talk contribs deleted page Template:KW (deprecated)
- 17:17, 24 January 2023 RhoSigma talk contribs deleted page Template:WhiteStart (deprecated, use FixedStart instead)
- 17:17, 24 January 2023 RhoSigma talk contribs deleted page Template:WhiteEnd (deprecated, use FixedEnd instead)
- 17:16, 24 January 2023 RhoSigma talk contribs deleted page Template:Parameters (deprecated, use PageParameters instead)
- 16:50, 21 January 2023 RhoSigma talk contribs protected SNDOPEN-v0.960 [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 16:50, 21 January 2023 RhoSigma talk contribs protected SNDOPEN-v0.954 [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 21:41, 20 January 2023 RhoSigma talk contribs created page SNDOPEN-v0.960 (Created page with "{{DISPLAYTITLE:_SNDOPEN-v0.960}} The _SNDOPEN function loads a sound file into memory and returns a LONG handle value above 0. {{PageSyntax}} : {{Parameter|soundHandle&}} = _SNDOPEN({{Parameter|fileName$}}) {{PageDescription}} * Returns a LONG {{Parameter|soundHandle&}} value to the sound file in memory. '''A zero value means the sound could not be loaded.''' * The literal or variable STRING sound {{Parameter|fileName$}} can be '''WAV, OGG or MP3'...")
- 21:29, 20 January 2023 RhoSigma talk contribs created page SNDOPEN-v0.954 (Created page with "{{DISPLAYTITLE:_SNDOPEN-v0.954}} The '''_SNDOPEN''' function loads a sound file into memory and returns a valid LONG handle value when it is not zero. {{PageSyntax}} :{{Parameter|sound_handle&}} = {{KW|_SNDOPEN}} (''filename$''[, "[VOL][,][SYNC][,][LEN][,][PAUSE][,][SETPOS]"]) {{PageDescription}} *Sound file support for: WAV, OGG, AIFF, RIFF, VOC, MP3, MOD, MIDI *Capabilities of VOL, LEN, SYNC, SETPOS and PAUSE is a string of parameters separated by commas. It is...")
- 21:11, 20 January 2023 RhoSigma talk contribs created page Category:Historic (Created page with "__HIDDENCAT__ ;*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 purposes only. ----")
- 21:47, 19 January 2023 RhoSigma talk contribs deleted page File:Win.png (Deleted old revision 20230119214709!Win.png)
- 21:47, 19 January 2023 RhoSigma talk contribs uploaded a new version of File:Win.png
- 21:46, 19 January 2023 RhoSigma talk contribs deleted page File:Osx.png (Deleted old revision 20230119214639!Osx.png)
- 21:46, 19 January 2023 RhoSigma talk contribs uploaded a new version of File:Osx.png
- 21:45, 19 January 2023 RhoSigma talk contribs deleted page File:Lnx.png (Deleted old revision 20230119214453!Lnx.png)
- 21:44, 19 January 2023 RhoSigma talk contribs uploaded a new version of File:Lnx.png
- 21:11, 19 January 2023 RhoSigma talk contribs deleted page File:Apix.png (Deleted old revision 20230119211033!Apix.png)
- 21:10, 19 January 2023 RhoSigma talk contribs uploaded a new version of File:Apix.png
- 14:04, 19 January 2023 RhoSigma talk contribs protected File:Apix.png [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite) (hist)
- 14:02, 19 January 2023 RhoSigma talk contribs uploaded File:Apix.png
- 14:02, 19 January 2023 RhoSigma talk contribs created page File:Apix.png
- 18:57, 7 January 2023 A740g talk contribs created page SNDNEW (Initial version)
- 07:44, 6 January 2023 Offbyone talk contribs created page STATUSCODE (Created page with "{{DISPLAYTITLE:_STATUSCODE}} '''_STATUSCODE''' gives the HTTP status code of an HTTP response that was opened using _OPENCLIENT. {{Text|'''HTTP functionality is current unstable, and requires $UNSTABLE:HTTP to be able to use.'''|red}} {{PageSyntax}} : ''_STATUSCODE''({{Parameter|Handle}}) {{PageParameters}} * {{Parameter|Handle}} is the handle returned from _OPENCLIENT when making an HTTP request. {{PageDescription}} '''_STATUSCODE''' is used to get the H...")
- 07:44, 6 January 2023 Offbyone talk contribs created page GET (HTTP statement) (Created page with "{{DISPLAYTITLE:GET (HTTP Statement)}} '''GET''' reads the response of an HTTP request that was opened using _OPENCLIENT. {{Text|'''HTTP functionality is current unstable, and requires $UNSTABLE:HTTP to be able to use.'''|red}} {{PageSyntax}} : ''GET'' #{{Parameter|Handle}}, , {{Parameter|String}} : ''GET'' #{{Parameter|Handle}}, , {{Parameter|Fixed-Length-Variable}} {{PageParameters}} * {{Parameter|Handle}} is the handle returned from _OPENCLIENT when maki...")
- 01:14, 3 January 2023 RhoSigma talk contribs created page XOR (Redirected page to XOR (boolean)) Tag: New redirect
- 01:09, 3 January 2023 RhoSigma talk contribs moved page XOR to Bitwise Operators without leaving a redirect
- 15:51, 19 December 2022 RhoSigma talk contribs protected Template:PreEnd [Edit=Allow only autoconfirmed users] (indefinite) [Move=Allow only autoconfirmed users] (indefinite) (hist)
- 15:50, 19 December 2022 RhoSigma talk contribs created page Template:PreEnd (Created page with "</pre> |}")
- 15:50, 19 December 2022 RhoSigma talk contribs protected Template:PreStart [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
- 15:49, 19 December 2022 RhoSigma talk contribs created page Template:PreStart (Created page with "{|width="100%" cellpadding="15px" |- |<pre class="preplain">")
- 22:14, 27 November 2022 RhoSigma talk contribs deleted page Template:RelationalOperationsTable (deprecated)