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
  • Sorting the memory area
  • Existence of memory area
  • Performing a search in a memory area
  • Equivalence
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.
Positions on the element found before the current element of a memory area and returns the value of this element.
Example
// Positionne sur l'élément précédent de la zone mémoire "MaZoneMémoire" 
// et renvoie la valeur de cet élément
ResPrécédent = MemPrevious("MaZoneMémoire")
Syntax
<Result> = MemPrevious(<Memory area>)
<Result>: Any type
  • If previous element exists: return value of previous element, defined by functions MemAdd or MemModify.
  • If the preceding element does not exist: an empty string ("").
<Memory area>: Character string
Name of the memory area, defined by MemCreate.
Remarks

Sorting the memory area

The sorts performed by MemSort are taken into account during the call to MemPrevious.
If no sort was requested by MemSort, MemPrevious returns the value of the previous element according to the order of the elements added by MemAdd.

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 MemPrevious is used.
To check the existence of a memory area, use MemExist.

Performing a search in a memory area

If MemSeek is used before the call to MemPrevious, MemPrevious will be positioned on the previous element sought.

Equivalence

The two following syntaxes are equivalent:
Res = MemPrevious(<Memory area>)

Res = MemRetrieve(<Memory area>, MemCurrent(<Memory area>)-1)
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: 03/27/2025

Send a report | Local help