ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Memory area functions
  • Existence of memory area
  • Sorting the elements
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Warning
From version 20, this feature is kept for backward compatibility. We recommend that you use Associative arrays.
Adds an element to a memory area.
Example
// Adds the value of the Customer.Name item to "MemArea"
// The returned value will be the record number of this item
MemAdd("MemArea", Customer.Name, HRecNum(Customer))
Syntax
MemAdd(<Memory area> , <Added value> , <Return value>)
<Memory area>: Character string
Name of the memory area, defined by MemCreate.
<Added value>: Character string, integer or real
Value added to memory area (maximum size: 65521 bytes). This value corresponds to the sort argument used by MemSort. This value is returned by MemKeyVal.
<Return value>: Character string
Value that will be returned by MemRetrieve or MemSetPosition.
Remarks

Existence of memory area

The existence of the memory area is not checked.
If the specified memory area does not exist, a WLanguage error occurs when MemAdd is used.
To check the existence of a memory area, use MemExist.

Sorting the elements

The element added to the memory area is not sorted. To sort the entire memory area, use MemSort.
Business / UI classification: Neutral code
Component: wd300std.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/30/2024

Send a report | Local help