MC-Basic:PROGRAMPASSWORD$

From SoftMC-Wiki
Jump to: navigation, search
Language: English  • 中文(简体)‎

This command is used to set the file password and to toggle the password protection state. Password protection enables protection at the level of the file system, and is used to prevent an end user of the system from deleting or retrieving a file. Password protection is available for each file individually. By entering a password, the protected state is enabled. The state can be returned to the unprotected state by again entering the password. Any password entered while in the unprotected state returns the file to the protected state, with the password being the string that was just entered. A password can be changed by following this procedure. The password protection mechanism does not affect the ability to load and run the task.

Short form

PPAS$

Syntax

ProgramPassword File = <filename string> Password = <password string>

Availability

Since Version 4.5.3

Type

<filename string>: A string including file specification, including file name and extension.
<password string>: String

Range

A maximum of 10 characters.

Default

By default, files are not protected.

Scope

Configuration or Terminal

Limitations

The password must begin with a letter, and thereafter may consist of alphanumeric characters and the underscore character.

Examples

ProgramPassword$ File = “MyFile.prg” Password = “abc_def”

Or

Common shared Fname as string = “MyFile.prg”

Dim shred Pword as string = “abc_def”

PPas$ File = Fname Password = Pword

See Also