Script Steps Reference

Table Of Contents
FILEMAKER SCRIPT STEPS REFERENCE 114
Originated in
FileMaker Pro 6.0 or earlier
Description
A shared, or multi-user, database is a file available to users on a network.
Examples
This script could be a startup script to guarantee that a database is hosted upon launch.
Show Custom Dialog ["Make this file available on the network?"]
If [Get (LastMessageChoice) = 1]
Set Multi-User [On]
End If
Tip The Get(MultiUserState) function could be used to verify the resulting multi-user setting.
Get(MultiUserState) is set to 0 for a single-user file and 1 for a multi-user file.
Related topics
Script steps reference (alphabetical list)
Contents
Set Use System Formats
Purpose
Allows the user to choose between the formats stored with the file or the user's current system
formats.
Format
Set Use System Formats [On/Off]
Options
On instructs FileMaker Pro to use the current system formats.
Off instructs FileMaker Pro to use the formats saved with the file.
Compatibility
This script step is:
not supported in web publishing
not supported in a FileMaker Server scheduled script
Originated in
FileMaker Pro 6.0 or earlier