LME for Pocket PC Functions

Here are the functions specific to LME for Pocket PC.

clc

Clear console.

Syntax

clc

Description

clc clears the output text field.

lmepath

Root path of LME.

Syntax

str = lmepath

Description

lmepath gives the root path of the LME application in the file system of the Pocket PC.

Example

p = lmepath
  p =
    \Program Files\Calerga\

path

Get or change path of library files.

Syntax

path
str = path
path(str)
path(str1, str2)

Description

Without arguments, path displays the path of all directories where library files are searched by use.

With an output argument, path returns all the paths separated by semicolons.

With an input argument, path(p) sets the paths to the contents of string p, which must be a list of semicolon-separated paths. On Windows CE, all paths must be absolute (they begin with a backslash). Backslashes must be written twice, since they are an escape character in LME string literals.

With two input arguments, path(p1,p2) sets the paths to those contained in strings p1 and p2. With this syntax, one of p1 or p2 is typically a call to path itself. This permits to prepend or append new paths to the existing ones.

Example

path(path, '\\Other LME Libraries');

Copyright 2005-2008, Calerga.
All rights reserved.