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).
- 15:22, 19 April 2022 SMcNeill talk contribs created page PRESERVE (Created page with "{{DISPLAYTITLE:_PRESERVE}} The _PRESERVE REDIM action preserves the current contents of dynamic arrays, when resizing or changing indices. {{PageSyntax}} : REDIM _PRESERVE array({{Parameter|newLowerIndex&}} [TO {{Parameter|newUpperIndex&}}]) [AS variabletype] {{PageDescription}} * REDIM or the $DYNAMIC metacommand must be used when the array is first created to be able to resize and preserve. * If _PRESERVE is not used, t...")
- 15:21, 19 April 2022 SMcNeill talk contribs created page PIXELSIZE (Created page with "{{DISPLAYTITLE:_PIXELSIZE}} The _PIXELSIZE function returns the color depth (Bits Per Pixel) of an image as 0 for text, 1 for 1 to 8 BPP or 4 for 32 bit. {{PageSyntax}} : {{Parameter|pixelSize%}} = _PIXELSIZE[({{Parameter|imageHandle&}})] {{PageDescription}} * If {{Parameter|imageHandle&}} is omitted, it is assumed to be the current write page. * Returns: ** 0 if the image or screen page specified by {{Parameter|imageHandle&}} is in text mode. ** 1 if the ima...")
- 15:21, 19 April 2022 SMcNeill talk contribs created page PI (Created page with "{{DISPLAYTITLE: _PI}} The _PI function returns '''π''' as a _FLOAT value with an optional multiplier parameter. {{PageSyntax}} : {{Parameter|circumference}} = _PI[({{Parameter|multiplier}})] {{Parameters}} * Optional {{Parameter|multiplier}} (''2 * radius'' in above syntax) allows multiplication of the π value. {{PageDescription}} * Function can be used in to supply π or multiples in a program. * Accuracy is determined by the return variable type...")
- 15:20, 19 April 2022 SMcNeill talk contribs created page PALETTECOLOR (Created page with "{{DISPLAYTITLE:_PALETTECOLOR}} The _PALETTECOLOR statement sets the color value of a palette entry of an image using 256 color modes or less (4 or 8 BPP). {{PageSyntax}} :_PALETTECOLOR {{Parameter|attribute%}}, {{Parameter|newColor&}}[, {{Parameter|destHandle&}}] {{PageDescription}} * The {{Parameter|attribute%}} is the palette index number of the color to set, ranging from 0 to 15 (4 bit) or 0 to 255 (8 bit) color modes. * The LONG {{Parameter|newColor&}...")
- 15:19, 19 April 2022 BigRon55 talk contribs created page REM (Created page with "'''REM''' or an apostrophe is used for programmer remarks, comments or to stop the execution of program code. {{PageSyntax}} :: REM program comment or ignore code {{PageDescription}} * Comments cannot be read by Qbasic correctly and may cause syntax and other errors without REM! * Instead of REM you can use the {{KW|REM|'}} symbol which can be put anywhere. * Code can also be commented out for program testing purposes. * Qbasic Metacommands such as {{KW|$DYNAMIC}} an...")
- 15:15, 19 April 2022 RhoSigma talk contribs created page Template:KW (Created page with "<span style="font-family: Courier New, Courier, monospace; font-size: 1.1em;">[[{{{1}}}]]</span>")
- 14:56, 19 April 2022 BigRon55 talk contribs created page REDIM (Created page with "A {{KW|REDIM}} statement can re-dimension one dynamic(flexible) array or a comma separated list of arrays. {{PageSyntax}} :REDIM [{{KW|_PRESERVE}}] [{{KW|SHARED}}] ArrayName[''typesuffix''] ({''max_element''|low_element[{{KW|TO}} ''upper_element'', ...]}) [{{KW|AS}} {{KW|TYPE|Type}}] {{PageDescription}} * Can change the number of elements in an array (the present array data is lost unless _PRESERVE is used). * Dynamic array element...")
- 14:55, 19 April 2022 BigRon55 talk contribs created page READ (Created page with "The '''READ''' statement reads values from a DATA field and assigns them to one or a comma separated list of variables. {{PageSyntax}} ::: READ value1$[, value2!, value3%, ...] * READ statements assign variables to DATA statement values on a one-to-one basis sequentially. * A single READ statement may access one or more DATA values. They are accessed in the order set. * Several READ statements may access the same DATA statement block at the foll...")
- 14:54, 19 April 2022 BigRon55 talk contribs created page RANDOMIZE (Created page with "'''RANDOMIZE''' is used with a seed value to generate different random number sequences using the RND function. {{PageSyntax}} :: '''RANDOMIZE''' [USING] '''{''seednumber''|TIMER}''' * The ''seed number'' can be ANY positive or negative numerical type value. The TIMER value is often used to change RND output each run. * If the ''seed number'' is omitted, the program will display: '''Random-number seed (-32768 to 32767)?''' request on screen. * '''USING'''...")
- 14:53, 19 April 2022 BigRon55 talk contribs created page RANDOM (Created page with "'''RANDOM''' is used in an OPEN statement to read(GET) from or write(PUT) to a file. {{PageSyntax}} :: OPEN Filename$ FOR RANDOM AS #1 [LEN = ''recordlength%''] * RANDOM is the Default mode if no mode is given in the OPEN statement. * It creates the file if the legal file name given does NOT exist. * As a RANDOM file, it can read or write any record using GET and/or PUT statements. * ''Recordlength%'' is determined by getting the LEN of a [...")
- 14:29, 19 April 2022 BigRon55 talk contribs created page Template:WhiteEnd (Created page with "</p>")
- 14:28, 19 April 2022 BigRon55 talk contribs created page Template:WhiteStart (Created page with "<p style="padding: 1em; line-height:100%; margin-left:5px; white-space: pre; font-family: Courier; background-color: white; color: black;">")
- 14:25, 19 April 2022 BigRon55 talk contribs created page UNSIGNED (Created page with "{{DISPLAYTITLE:_UNSIGNED}} _UNSIGNED defines a numerical value as being only positive. {{PageSyntax}} : DIM {{Parameter|variable}} AS [{{KW|_UNSIGNED}}] {{Parameter|datatype}} : _DEFINE {{Parameter|letterRange}} AS [{{KW|_UNSIGNED}}] {{Parameter|datatype}} {{PageDescription}} * Datatype can be any of the following: INTEGER, LONG, _BIT, _BYTE, _INTEGER64, _OFFSET *'''SINGLE, DOUBLE and _FLOAT variable types can...")
- 14:24, 19 April 2022 BigRon55 talk contribs created page INTEGER (Created page with "INTEGER is a 2-byte number type definition that can hold whole numerical values. {{PageSyntax}} : DIM ''variable'' AS INTEGER * Integers do not use decimal point values but will round those off to the nearest even whole number. * QBasic integer values can range from -32768 to 32767 without an "overflow" error. * For larger integer values use the LONG integer type. * '''QB64''' INTEGER values greater than 32767 become negative signed values instead...")
- 14:22, 19 April 2022 BigRon55 talk contribs created page PALETTECOLOR (function) (Created page with "{{DISPLAYTITLE:_PALETTECOLOR (function)}} The _PALETTECOLOR function is used to return the 32 bit attribute color setting of an image or screen page handle's palette. {{PageSyntax}} : {{Parameter|color32Value&}} = _PALETTECOLOR({{Parameter|attributeNumber%}}, {{Parameter|imgHandle&}}) {{PageDescription}} * {{Parameter|attributeNumber%}} is the color attribute value from 0 to 255 for 1, 4 or 8 bit images. * {{P...")
- 14:21, 19 April 2022 BigRon55 talk contribs created page POINT (Created page with "The '''POINT''' function returns the pixel COLOR attribute at a specified graphics coordinate or the current graphic cursor position. ''Color'' {{PageSyntax}} ::::color_attribute% = '''POINT ('''''column%, row%''''')''' ''Graphic cursor position'' {{PageSyntax}} ::::pointer_coordinate% = '''POINT('''{0|1|2|3}''')''' {{Parameters}} Graphic Color syntax: * The INTEGER ''column'' and ''row'' coordinates designate the pixel position color on the screen to re...")
- 14:20, 19 April 2022 BigRon55 talk contribs created page LONG (Created page with "LONG defines a variable as a 4 byte number type definition for larger INTEGER values. {{PageSyntax}} : DIM {{Parameter|variable}} AS LONG * LONG integer values range from -2147483648 to 2147483647. * '''QB64''''s _UNSIGNED LONG integer values range from 0 to 4294967295. * '''QB64''' _UNSIGNED _INTEGER64 values range from 0 to 18446744073709551615. * Decimal point values assigned to a LONG variable will be rounded to the nearest...")
- 14:11, 19 April 2022 BigRon55 talk contribs created page ROUND (Created page with "{{DISPLAYTITLE:_ROUND}} The _ROUND function rounds to the closest even INTEGER, LONG or _INTEGER64 numerical value. {{PageSyntax}} : {{Parameter|value}} = _ROUND({{Parameter|number}}) {{PageDescription}} * Can round SINGLE, DOUBLE or _FLOAT floating decimal point parameter values. * Can be used when numerical values exceed the limits of CINT or CLNG. * Rounding is done to the closest even integer value. The same as...")
- 14:10, 19 April 2022 BigRon55 talk contribs created page RGBA32 (Created page with "{{DISPLAYTITLE:_RGBA32}} The _RGBA32 function returns the 32-bit ''RGBA'' color value with the specified red, green, blue and alpha component intensities. {{PageSyntax}} : {{Parameter|color32value~&}} = _RGBA32({{Parameter|red&}}, {{Parameter|green&}}, {{Parameter|blue&}}, {{Parameter|alpha&}}) {{PageDescription}} * The value returned is a 32-bit _UNSIGNED LONG color value. * '''Return variable types must be _UNSIGNED LONG or resulting color...")
- 14:10, 19 April 2022 BigRon55 talk contribs created page RGBA (Created page with "{{DISPLAYTITLE:_RGBA}} The _RGBA function returns the closest palette index (legacy SCREEN modes) OR the 32-bit LONG color value (32-bit screens). {{PageSyntax}} : {{Parameter|colorIndex~&}} = _RGBA({{Parameter|red&}}, {{Parameter|green&}}, {{Parameter|blue&}}, {{Parameter|alpha&}}[, {{Parameter|imageHandle&}}]''')''' * The value returned is either the closest color attribute number or a 32-bit _UNSIGNED LONG color value. * '''Return variable typ...")
- 14:09, 19 April 2022 BigRon55 talk contribs created page RGB32 (Created page with "{{DISPLAYTITLE:_RGB32}} The _RGB32 function returns the 32-bit ''RGBA'' color value with specified red, green and blue component intensities and optional alpha. {{PageSyntax}} ''Original syntax'': :{{Parameter|color32value~&}} = _RGB32({{Parameter|red&}}, {{Parameter|green&}}, {{Parameter|blue&}}) ''Alternative Syntax 2'': :{{Parameter|color32value~&}} = _RGB32({{Parameter|red&}}, {{Parameter|green&}}, {{Parameter|blue&}}, {{Parameter|alpha&}}) ''Alternat...")
- 14:08, 19 April 2022 BigRon55 talk contribs created page RGB (Created page with "{{DISPLAYTITLE:_RGB}} The _RGB function returns the closest palette attribute index (legacy SCREEN modes) OR the LONG 32-bit color value (32-bit screens). {{PageSyntax}} : {{Parameter|colorIndex~&}} = _RGB({{Parameter|red&}}, {{Parameter|green&}}, {{Parameter|blue&}}[, {{Parameter|imageHandle&}}]) {{PageDescription}} * The value returned is either the closest color attribute number or a 32-bit _UNSIGNED LONG color value. * '''Return variable typ...")
- 14:07, 19 April 2022 BigRon55 talk contribs created page RESIZEWIDTH (Created page with "{{DISPLAYTITLE:_RESIZEWIDTH}} The _RESIZEWIDTH function returns the user resized screen pixel width if $RESIZE:ON allows it and _RESIZE returns -1 {{PageSyntax}} : {{Parameter|newWidth&}} = _RESIZEWIDTH {{PageDescription}} * _RESIZE function must return true (-1) before the requested screen dimensions can be returned by the function. * The program should decide if the request is allowable for proper program i...")
- 14:06, 19 April 2022 BigRon55 talk contribs created page RESIZEHEIGHT (Created page with "{{DISPLAYTITLE:_RESIZEHEIGHT}} The _RESIZEHEIGHT function returns the user resized screen pixel height if $RESIZE:ON allows it and _RESIZE returns -1 {{PageSyntax}} : {{Parameter|newHeight&}} = _RESIZEHEIGHT {{Parameter|Details:}} * _RESIZE function must return true (-1) before the requested screen dimensions can be returned by the function. * The program should decide if the request is allowable for proper p...")
- 14:05, 19 April 2022 BigRon55 talk contribs created page RESIZE (function) (Created page with "{{DISPLAYTITLE:_RESIZE (function)}} The _RESIZE function returns true (-1) when a user has attempted to resize the program window and $RESIZE:ON has allowed it. {{PageSyntax}} : IF '''_RESIZE''' THEN rx& = _RESIZEWIDTH: ry& = _RESIZEHEIGHT {{PageDescription}} * The function returns -1 if a program screen resize was attempted by the user. * After the function returns -1, _RESIZEWIDTH and _RESIZEHEIGHT can return the new requested dimensions in...")
- 14:04, 19 April 2022 BigRon55 talk contribs created page RESIZE (Created page with "{{DISPLAYTITLE:_RESIZE}} The _RESIZE statement sets resizing of the window ON or OFF and sets the method as _STRETCH or _SMOOTH. {{PageSyntax}} : _RESIZE [{ON|OFF}][, {_STRETCH|_SMOOTH}] {{Parameters}} * When resizing is turned OFF no method is listed. * When resizing is turned ON or left empty, a ''_STRETCH'' or ''_SMOOTH'' method can be used. {{PageDescription}} * Before this statement can be used, you must add the $RESIZE''':ON''' metacommand to y...")
- 14:02, 19 April 2022 BigRon55 talk contribs created page $RESIZE (Created page with "The $RESIZE metacommand determines if a program window can be resized by the user. {{PageSyntax}} : $RESIZE:{ON|OFF|STRETCH|SMOOTH} {{PageDescription}} * $RESIZE:ON is used to allow the program window to be resized by a program user. Otherwise it cannot be changed. * $RESIZE:OFF ('''default''') is used when the program's window size cannot be changed by the user. * $RESIZE:STRETCH the screen will be stretched to fit the new window size with a...")
- 14:01, 19 April 2022 BigRon55 talk contribs created page RESETBIT (Created page with "{{DISPLAYTITLE:_RESETBIT}} The _RESETBIT function is used to set a specified bit of a numerical value to 0 (OFF state). {{PageSyntax}} :{{Parameter|result}} = _RESETBIT({{Parameter|numericalVariable}}, {{Parameter|numericalValue}}) {{Parameters}} * {{Parameter|numericalVariable}} is the variable to set the bit of and can be of the following types: _BYTE, INTEGER, LONG, or _INTEGER64. * Integer values can be signed or _UNSIGNED. * {{Paramet...")
- 14:00, 19 April 2022 BigRon55 talk contribs created page READBIT (Created page with "{{DISPLAYTITLE:_READBIT}} The _READBIT function is used to check the state of a specified bit of a integer value. {{PageSyntax}} :{{Parameter|result}} = _READBIT({{Parameter|numericalVariable}}, {{Parameter|numericalValue}}) {{Parameters}} * {{Parameter|numericalVariable}} is the variable to read the state of a bit of and can be of the following types: _BYTE, INTEGER, LONG, or _INTEGER64. * Integer values can be signed or _UNSIGNED. * {{Pa...")
- 13:59, 19 April 2022 BigRon55 talk contribs created page RED32 (Created page with "{{DISPLAYTITLE:_RED32}} The _RED32 function returns the red component intensity of a 32-bit image or surface color. {{PageSyntax}} : {{Parameter|red32color&}} = _RED32({{Parameter|rgbaColor&}}) {{PageDescription}} * {{Parameter|rgbaColor&}} is the 32-bit ''RGBA'' color value to retrieve the red component intensity value from. * ''RGBA'' color values are returned by the _PALETTECOLOR, POINT, _RGB, _RGB32, _RGBA or [...")
- 13:56, 19 April 2022 BigRon55 talk contribs created page RED (Created page with "{{DISPLAYTITLE:_RED}} The _RED function returns the palette index or the red component intensity of a 32-bit image color. {{PageSyntax}} : {{Parameter|redIntensity&}} = _RED({{Parameter|rgbaColorIndex&}}[, {{Parameter|imageHandle&}}]) {{PageDescription}} * {{Parameter|rgbaColorIndex&}} is the ''RGBA'' color value or palette index of the color to retrieve the red component intensity from. * The LONG intensity value returned ranges from 0 (no intensity, not...")
- 13:31, 19 April 2022 BigRon55 talk contribs created page Template:OutputEnd (Created page with "</p>")
- 13:31, 19 April 2022 BigRon55 talk contribs created page Template:OutputStart (Created page with "<p style="padding: 1em; line-height:100%; margin-left:5px; white-space: pre; font-family: Courier, monospace; background-color: black; color: lightgrey; word-wrap: break-word;">")
- 13:10, 19 April 2022 RhoSigma talk contribs created page Template:TextEnd (Created page with "</p>")
- 13:10, 19 April 2022 RhoSigma talk contribs created page Template:TextStart (Created page with "<p style="padding: 1em; line-height:100%; margin-left:5px; white-space: pre; font-family: courier; background-color: lightgrey; color: black;">")
- 13:04, 19 April 2022 RhoSigma talk contribs created page Template:Small (Created page with "<center><span style="font-family: Courier New, Courier, monospace; font-size: 0.80em; line-height: 50%;">Menu Created by Cyperium</span></center>")
- 12:42, 19 April 2022 SMcNeill talk contribs created page OS$ (Created page with "The _OS$ function returns the operating system and QB64 compiler bit version used to compile a QB64 program. {{PageSyntax}} : {{Parameter|compilerVersion$}} = _OS$ {{PageDescription}} * Returns a STRING listing the OS as [WINDOWS], [LINUX] or [MACOSX] and the compiler bit format of [32BIT] or [64BIT]. Example: {{text|[WINDOWS][32BIT]}} * Allows a BAS program to be compiled with QB64 in Windows, Linux or MacOSX using different OS or language specifications...")
- 12:41, 19 April 2022 SMcNeill talk contribs created page OPTION EXPLICITARRAY (Created page with "{{DISPLAYTITLE:OPTION _EXPLICITARRAY}} OPTION _EXPLICITARRAY instructs the compiler to require arrays be declared with DIM, REDIM or equivalent. {{PageSyntax}} : OPTION _EXPLICITARRAY {{PageDescription}} * Normally statements like {{InlineCode}}x(2) = 3{{InlineCodeEnd}} will implicitly create an array x(). OPTION _EXPLICITARRAY requires a preceding declaration for the array, helping to catch mistyped array and function names. * Unlike OPTION _E...")
- 12:41, 19 April 2022 SMcNeill talk contribs created page OPTION EXPLICIT (Created page with "{{DISPLAYTITLE:OPTION _EXPLICIT}} OPTION _EXPLICIT instructs the compiler to require variable declaration with DIM, REDIM or an equivalent statement. {{PageSyntax}} : OPTION _EXPLICIT {{PageDescription}} * With OPTION _EXPLICIT you can avoid typos by having QB64 immediately warn in the '''Status area''' of new variables used without previous declaration. * Enable OPTION _EXPLICIT temporarily even if a program source file doesn't contain the...")
- 12:40, 19 April 2022 SMcNeill talk contribs created page ERROR Codes (Created page with "<center>'''QB64 Compiler Errors''': To troubleshoot compiler errors try this: recompile scripts</center> <center>'''Please report any Operating System or Compiler errors or failures you cannot fix [https://github.com/QB64Team/qb64/issues here.]'''</center> <center>'''It's a good idea to exclude "QB64.exe" from any real-time anti-virus scanning to prevent IDE Module Errors!'''</center> The following table...")
- 12:40, 19 April 2022 SMcNeill talk contribs created page OPENHOST (Created page with "{{DISPLAYTITLE:_OPENHOST}} The _OPENHOST function opens a Host which listens for new connections and returns a Host status handle. {{PageSyntax}} : {{Parameter|hostHandle}} = _OPENHOST('''"TCP/IP:8080"''') {{PageDescription}} * Creates an Illegal Function Call error if called with a string argument of the wrong syntax. * The port used in the syntax example is 8080. * Valid {{Parameter|hostHandle}} values are negative numbers. * If the syntax i...")
- 12:39, 19 April 2022 SMcNeill talk contribs created page OPENCONNECTION (Created page with "{{DISPLAYTITLE:_OPENCONNECTION}} The _OPENCONNECTION function opens a connection from a client that the host has detected and returns a status handle. {{PageSyntax}} :{{Parameter|connectHandle}} = _OPENCONNECTION({{Parameter|hostHandle}}) {{PageDescription}} * Valid {{Parameter|connectHandle}} values returned are negative numbers. * If the syntax is correct but they fail to begin/connect, a {{Parameter|connectHandle}} of 0 is returned. * Always check if the...") Tag: visualeditor-switched
- 12:38, 19 April 2022 SMcNeill talk contribs created page OPENCLIENT (Created page with "The _OPENCLIENT function connects to a Host on the Internet as a Client and returns the Client status handle.{{PageSyntax}} :{{Parameter|clientHandle&}} = _OPENCLIENT('''"TCP/IP:8080:12:30:1:10"''') {{PageDescription}} *An Illegal Function Call error will be triggered if the function is called with a string argument of the wrong syntax. *Connects to a host somewhere on the internet as a client. *Valid {{Parameter|clientHandle&}} values are negativ...") Tag: visualeditor
- 12:30, 19 April 2022 SMcNeill talk contribs created page OFFSET (Created page with "{{DISPLAYTITLE:_OFFSET}} The _OFFSET variable type stores the location of a value in memory. The byte size varies as required by the system. {{PageSyntax}} : DIM variable AS '''_OFFSET''' {{PageDescription}} * _OFFSET types can be created as signed or _UNSIGNED at the programmer's discretion. * The type suffix for _OFFSET is '''%&''' which designates the integer value's flexible size. * Offset values are only useful when used in conjunction with _ME...")
- 12:30, 19 April 2022 SMcNeill talk contribs created page OFFSET (function) (Created page with "{{DISPLAYTITLE:_OFFSET (function)}} The _OFFSET function returns the memory offset of/within a given variable. {{PageSyntax}} : {{Parameter|offset%&}} = _OFFSET({{Parameter|variable}}) {{PageDescription}} * The {{Parameter|variable}} parameter can be any type of numerical or string variable name. * API LIBRARY parameter or type names may include '''lp, ptr''' or '''p''' which designates them as a pointer type. * _OFFSET...")
- 12:16, 19 April 2022 SMcNeill talk contribs created page NUMLOCK (Created page with "{{DISPLAYTITLE: _NUMLOCK}} The _NUMLOCK statement sets the state of the Num Lock key. {{PageSyntax}} : _NUMLOCK {ON|OFF|_TOGGLE} ==Availability== * Version 1.4 and up. * Not available in Linux or macOS. {{PageSeeAlso}} * _CAPSLOCK (function), _NUMLOCK (function), _SCROLLLOCK (function) * _CAPSLOCK (statement), _SCROLLLOCK (statement) {{Page...")
- 12:15, 19 April 2022 SMcNeill talk contribs created page NUMLOCK (function) (Created page with "{{DISPLAYTITLE: _NUMLOCK (function)}} The _NUMLOCK function returns the current state of the Num Lock key as on (-1) or off (0). {{PageSyntax}} : {{Parameter|keyStatus%%}} = _NUMLOCK ==Availability== * Version 1.4 and up. * Not available in Linux or macOS. {{PageSeeAlso}} * _CAPSLOCK (function), _SCROLLLOCK (functi...")
- 12:15, 19 April 2022 SMcNeill talk contribs created page $NOPREFIX (Created page with "The $NOPREFIX metacommand allows all QB64 functions and statements to be used without the leading underscore (_). {{PageSyntax}} :$NOPREFIX {{PageDescription}} * QB64-specific keywords are by default prefixed with an underscore, in order to differentiate them from legacy keywords inherited from QBasic/QuickBASIC 4.5. * The convention exists in order to allow older code to be loaded and compiled in QB64 without naming conflicts with existing variables or const...")
- 12:15, 19 April 2022 SMcNeill talk contribs created page NEWIMAGE (Created page with "{{DISPLAYTITLE:_NEWIMAGE}} The _NEWIMAGE function prepares a window image surface and returns the LONG handle value. {{PageSyntax}} : {{Parameter|handle&}} = _NEWIMAGE({{Parameter|width&}}, {{Parameter|height&}}[, {''0''|''1''|''2''|''7''|''8''|''9''|''10''|''11''|''12''|''13''|''256''|''32''}]) {{Parameters}} * Minimum LONG screen dimensions are {{Parameter|width&}} >= 1, {{Parameter|height&}} >= 1 measured in pixels as INTEGER or LONG va...")
- 12:14, 19 April 2022 SMcNeill talk contribs created page MOUSEY (Created page with "{{DISPLAYTITLE:_MOUSEY}} The _MOUSEY function returns the current vertical (row) mouse cursor position when read after _MOUSEINPUT. {{PageSyntax}} : {{Parameter|pixelRow%}} = _MOUSEY {{PageDescription}} * SCREEN 0 returns the INTEGER vertical text row position (from build 20170817/62 onward); older versions return a SINGLE vertical text row position. Use INTEGER variables to avoid floating decimal returns. * Graphic screen modes 1, 2 and 7...")