ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Memory area functions
  • Existence of memory area
  • Sorting the elements
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Warning
From version 20, this feature is kept for backward compatibility. We recommend that you use Associative arrays.
Modifies an element in a memory zone.
Example
// Resets to 0 all the values greater than 100
// in "MyMemoryZone"
FOR Subscript = 1 _TO_ MemCount("MyMemoryZone")
ResValue = MemRetrieve("MyMemoryZone", Subscript)
IF ResValue > 100 THEN MemModify("MyMemoryZone", 0, 0, Subscript)
END
Syntax
MemModify(<Memory area> , <Modified Value> , <Return value> , <Subscript>)
<Memory area>: Character string
Name of the memory area, defined by MemCreate.
<Modified Value>: Character string, integer or real
Value that is modified in the memory area. This value corresponds to the sort argument used by MemSort. This value is returned by MemKeyVal.
<Return value>: Character string
Value returned by MemRetrieve or MemSetPosition.
<Subscript>: Integer
Index of the element to be modified. The index of an element is returned by MemCurrent or MemSeek.
Remarks

Existence of memory area

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

Sorting the elements

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

Last update: 04/06/2023

Send a report | Local help