Help

Table Of Contents
FILEMAKER PRO HELP 1275
The package contains a Contents folder, which has information on the package and the
Frameworks, OS
X, and Resources folders. The Resources folder includes the language resources
folders (*.lproj). The package can be opened by using the Show Package Contents command.
The Extensions folder accompanies OS X package and contains the Dictionaries folder. The
Dictionaries folder contains dictionary files (*.mpr) for all of the languages supported. The
Dictionaries folder also contains a file for the user spelling dictionary (User.upr).
Windows runtime solutions folder contents (FileMaker Pro Advanced)
DLL files for Windows runtime solutions
The Developer Utilities generate a set of Dynamic Link Libraries (DLLs) during the binding process.
These are in the solution folder along with the runtime application and bound database files. They
must be delivered as part of the runtime solution. If any of these files are missing or become
damaged, they must be replaced. Include the entire project directory when distributing your runtime
solution.
Extensions folder for Windows solutions
The Extensions folder of Windows runtime solutions contains a folder for each language supported
and a dictionaries folder. Each language resource folder contains a DLL file for the language
(FMRSRC.dll), a file containing the text for the interface, dialog boxes, and error messages
(FMStrs.dls), and a file containing the Windows language ID for the language (lang.dat).
The Extensions folder also contains the Dictionaries folder. The Dictionaries folder contains
dictionary files (*.mpr) for all of the languages supported. The Dictionaries folder also contains a file
for the user spelling dictionary (User.upr).
Plug-in update calculations
Client plug-in version calculation
Let (
[
PluginNamePosition = Position ( Get(InstalledFMPlugins);
Plugin Name ; 1 ; 1 );
PluginVersionStart = PluginNamePosition + Length( Plugin Name )
+ 1;
PluginVersionEnd = Position ( Get(InstalledFMPlugins); ";" ;
PluginNamePosition ; 2 );
PluginVersionLength = PluginVersionEnd - PluginVersionStart
];
Middle ( Get(InstalledFMPlugins) ; PluginVersionStart ;
PluginVersionLength )
)