Function overview
Prototype
StatusLog (
)
Parameters
No parameters for this function.
Description
Tags:
XML Dev Debug
Logs all Get functions and some Design functions as an xml string
Examples
Sample input
StatusLog
Sample output
get all information on current environment.
Function code
/*
StatusLog ()
by Fabrice Nordmann
v2, Jan 2008
- uses xmlSet
v1, April 2007
Logs all Get functions and some Design functions as an xml string
*/
Substitute (
// GET FUNCTIONS
xmlSet ( "AccountName" ; Get ( AccountName )) &
xmlSet ( "ActiveFieldContents" ; Get ( ActiveFieldContents )) &
xmlSet ( "ActiveFieldName" ; Get ( ActiveFieldName )) &
xmlSet ( "ActiveFieldTableName" ; Get ( ActiveFieldTableName )) &
xmlSet ( "ActiveLayoutObjectName" ; Get ( ActiveLayoutObjectName )) &
xmlSet ( "ActiveModifierKeys" ; Get ( ActiveModifierKeys )) &
xmlSet ( "ActiveRepetitionNumber" ; Get ( ActiveRepetitionNumber )) &
xmlSet ( "ActiveSelectionSize" ; Get ( ActiveSelectionSize )) &
xmlSet ( "ActiveSelectionStart" ; Get ( ActiveSelectionStart )) &
xmlSet ( "AllowAbortState" ; Get ( AllowAbortState )) &
xmlSet ( "AllowToolbarState" ; Get ( AllowToolbarState )) &
xmlSet ( "ApplicationLanguage" ; Get ( ApplicationLanguage )) &
xmlSet ( "ApplicationVersion" ; Get ( ApplicationVersion )) &
xmlSet ( "CalculationRepetitionNumber" ; Get ( CalculationRepetitionNumber )) &
xmlSet ( "CurrentDate" ; Get ( CurrentDate )) &
xmlSet ( "CurrentHostTimestamp" ; Get ( CurrentHostTimeStamp )) &
xmlSet ( "CurrentTime" ; Get ( CurrentTime )) &
xmlSet ( "CurrentTimestamp" ; Get ( CurrentTimeStamp )) &
xmlSet ( "CustomMenuSetName" ; Get ( CustomMenuSetName )) &
xmlSet ( "DesktopPath" ; Get ( DesktopPath )) &
xmlSet ( "DocumentsPath" ; Get ( DocumentsPath )) &
xmlSet ( "ErrorCaptureState" ; Get ( ErrorCaptureState )) &
xmlSet ( "ExtendedPrivileges" ; Get ( ExtendedPrivileges )) &
xmlSet ( "FileMakerPath" ; Get ( FileMakerPath )) &
xmlSet ( "FileName" ; Get ( FileName )) &
xmlSet ( "FilePath" ; Get ( FilePath )) &
xmlSet ( "FileSize" ; Get ( FileSize )) &
xmlSet ( "FoundCount" ; Get ( FoundCount )) &
xmlSet ( "HighContrastColor" ; Get ( HighContrastColor )) &
xmlSet ( "HighContrastState" ; Get ( HighContrastState )) &
xmlSet ( "HostApplicationVersion" ; Get ( HostApplicationVersion )) &
xmlSet ( "HostIPAddress" ; Get ( HostIPAddress )) &
xmlSet ( "HostName" ; Get ( HostName )) &
xmlSet ( "LastError" ; Get ( LastError )) &
xmlSet ( "LastMessageChoice" ; Get ( LastMessageChoice )) &
xmlSet ( "LastODBCError" ; Get ( LastODBCError )) &
xmlSet ( "LayoutAccess" ; Get ( LayoutAccess )) &
xmlSet ( "LayoutCount" ; Get ( LayoutCount )) &
xmlSet ( "LayoutName" ; Get ( LayoutName )) &
xmlSet ( "LayoutNumber" ; Get ( LayoutNumber )) &
xmlSet ( "LayoutTableName" ; Get ( LayoutTableName )) &
xmlSet ( "LayoutViewState" ; Get ( LayoutViewState )) &
xmlSet ( "MultiUserState" ; Get ( MultiUserState )) &
xmlSet ( "NetworkProtocol" ; Get ( NetworkProtocol )) &
xmlSet ( "PageNumber" ; Get ( PageNumber )) &
xmlSet ( "PortalRowNumber" ; Get ( PortalRowNumber )) &
xmlSet ( "PreferencesPath" ; Get ( PreferencesPath )) &
xmlSet ( "PrinterName" ; Get ( PrinterName )) &
xmlSet ( "PrivilegeSetName" ; Get ( PrivilegeSetName )) &
xmlSet ( "RecordAccess" ; Get ( RecordAccess )) &
xmlSet ( "RecordID" ; Get ( RecordID )) &
xmlSet ( "RecordModificationCount" ; Get ( RecordModificationCount )) &
xmlSet ( "RecordNumber" ; Get ( RecordNumber )) &
xmlSet ( "RecordOpenCount" ; Get ( RecordOpenCount )) &
xmlSet ( "RecordOpenState" ; Get ( RecordOpenState )) &
xmlSet ( "RequestCount" ; Get ( RequestCount )) &
xmlSet ( "RequestOmitState" ; Get ( RequestOmitState )) &
xmlSet ( "ScreenDepth" ; Get ( ScreenDepth )) &
xmlSet ( "ScreenHeight" ; Get ( ScreenHeight )) &
xmlSet ( "ScreenWidth" ; Get ( ScreenWidth )) &
xmlSet ( "ScriptName" ; Get ( ScriptName )) &
xmlSet ( "ScriptParameter" ; Get ( ScriptParameter )) &
xmlSet ( "ScriptResult" ; Get ( ScriptResult )) &
xmlSet ( "SortState" ; Get ( SortState )) &
xmlSet ( "StatusAreaState" ; Get ( StatusAreaState )) &
xmlSet ( "SystemDrive" ; Get ( SystemDrive )) &
xmlSet ( "SystemIPAddress" ; Get ( SystemIPAddress )) &
xmlSet ( "SystemLanguage" ; Get ( SystemLanguage )) &
xmlSet ( "SystemNICAddress" ; Get ( SystemNICAddress )) &
xmlSet ( "SystemPlatform" ; Get ( SystemPlatform )) &
xmlSet ( "SystemVersion" ; Get ( SystemVersion )) &
xmlSet ( "TemporaryPath" ; Get ( TemporaryPath )) &
xmlSet ( "TextRulerVisible" ; Get ( TextRulerVisible )) &
xmlSet ( "TotalRecordCount" ; Get ( TotalRecordCount )) &
xmlSet ( "UserCount" ; Get ( UserCount )) &
xmlSet ( "UserName" ; Get ( UserName )) &
xmlSet ( "UseSystemFormatsState" ; Get ( UseSystemFormatsState )) &
xmlSet ( "WindowContentHeight" ; Get ( WindowContentHeight )) &
xmlSet ( "WindowContentWidth" ; Get ( WindowContentWidth )) &
xmlSet ( "WindowDesktopHeight" ; Get ( WindowDesktopHeight )) &
xmlSet ( "WindowDesktopWidth" ; Get ( WindowDesktopWidth )) &
xmlSet ( "WindowHeight" ; Get ( WindowHeight )) &
xmlSet ( "WindowLeft" ; Get ( WindowLeft )) &
xmlSet ( "WindowMode" ; Get ( WindowMode )) &
xmlSet ( "WindowName" ; Get ( WindowName )) &
xmlSet ( "WindowTop" ; Get ( WindowTop )) &
xmlSet ( "WindowVisible" ; Get ( WindowVisible )) &
xmlSet ( "WindowWidth" ; Get ( WindowWidth )) &
xmlSet ( "WindowZoomLevel" ; Get ( WindowZoomLevel )) &
// DESIGN FUNCTIONS
xmlSet ( "DatabaseNames" ; DatabaseNames) &
xmlSet ( "WindowNames" ; WindowNames)
; [ ¶ ; "\¶" ] )
// ===================================
/*
This function is published on FileMaker Custom Functions
to check for updates and provide feedback and bug reports
please visit http://www.fmfunctions.com/fid/108
Prototype: StatusLog( )
Function Author: Fabrice (http://www.fmfunctions.com/mid/37)
Last updated: 15 May 2009
Version: 1.2
*/
// ===================================
/*__LITBR__StatusLog ()__LITBR__by Fabrice Nordmann__LITBR____LITBR__v2, Jan 2008__LITBR__ - uses xmlSet__LITBR__v1, April 2007__LITBR____LITBR____LITBR__Logs all Get functions and some Design functions as an xml string__LITBR____LITBR__*/__LITBR____LITBR__Substitute (__LITBR____LITBR__// GET FUNCTIONS__LITBR__xmlSet ( "AccountName" ; Get ( AccountName )) &__LITBR__xmlSet ( "ActiveFieldContents" ; Get ( ActiveFieldContents )) &__LITBR__xmlSet ( "ActiveFieldName" ; Get ( ActiveFieldName )) &__LITBR__xmlSet ( "ActiveFieldTableName" ; Get ( ActiveFieldTableName )) &__LITBR__xmlSet ( "ActiveLayoutObjectName" ; Get ( ActiveLayoutObjectName )) &__LITBR__xmlSet ( "ActiveModifierKeys" ; Get ( ActiveModifierKeys )) &__LITBR__xmlSet ( "ActiveRepetitionNumber" ; Get ( ActiveRepetitionNumber )) &__LITBR__xmlSet ( "ActiveSelectionSize" ; Get ( ActiveSelectionSize )) &__LITBR__xmlSet ( "ActiveSelectionStart" ; Get ( ActiveSelectionStart )) &__LITBR__xmlSet ( "AllowAbortState" ; Get ( AllowAbortState )) &__LITBR__xmlSet ( "AllowToolbarState" ; Get ( AllowToolbarState )) &__LITBR__xmlSet ( "ApplicationLanguage" ; Get ( ApplicationLanguage )) &__LITBR__xmlSet ( "ApplicationVersion" ; Get ( ApplicationVersion )) &__LITBR__xmlSet ( "CalculationRepetitionNumber" ; Get ( CalculationRepetitionNumber )) &__LITBR__xmlSet ( "CurrentDate" ; Get ( CurrentDate )) &__LITBR__xmlSet ( "CurrentHostTimestamp" ; Get ( CurrentHostTimeStamp )) &__LITBR__xmlSet ( "CurrentTime" ; Get ( CurrentTime )) &__LITBR__xmlSet ( "CurrentTimestamp" ; Get ( CurrentTimeStamp )) &__LITBR__xmlSet ( "CustomMenuSetName" ; Get ( CustomMenuSetName )) &__LITBR__xmlSet ( "DesktopPath" ; Get ( DesktopPath )) &__LITBR__xmlSet ( "DocumentsPath" ; Get ( DocumentsPath )) &__LITBR__xmlSet ( "ErrorCaptureState" ; Get ( ErrorCaptureState )) &__LITBR__xmlSet ( "ExtendedPrivileges" ; Get ( ExtendedPrivileges )) &__LITBR__xmlSet ( "FileMakerPath" ; Get ( FileMakerPath )) &__LITBR__xmlSet ( "FileName" ; Get ( FileName )) &__LITBR__xmlSet ( "FilePath" ; Get ( FilePath )) &__LITBR__xmlSet ( "FileSize" ; Get ( FileSize )) &__LITBR__xmlSet ( "FoundCount" ; Get ( FoundCount )) &__LITBR__xmlSet ( "HighContrastColor" ; Get ( HighContrastColor )) &__LITBR__xmlSet ( "HighContrastState" ; Get ( HighContrastState )) &__LITBR__xmlSet ( "HostApplicationVersion" ; Get ( HostApplicationVersion )) &__LITBR__xmlSet ( "HostIPAddress" ; Get ( HostIPAddress )) &__LITBR__xmlSet ( "HostName" ; Get ( HostName )) &__LITBR__xmlSet ( "LastError" ; Get ( LastError )) &__LITBR__xmlSet ( "LastMessageChoice" ; Get ( LastMessageChoice )) &__LITBR__xmlSet ( "LastODBCError" ; Get ( LastODBCError )) &__LITBR__xmlSet ( "LayoutAccess" ; Get ( LayoutAccess )) &__LITBR__xmlSet ( "LayoutCount" ; Get ( LayoutCount )) &__LITBR__xmlSet ( "LayoutName" ; Get ( LayoutName )) &__LITBR__xmlSet ( "LayoutNumber" ; Get ( LayoutNumber )) &__LITBR__xmlSet ( "LayoutTableName" ; Get ( LayoutTableName )) &__LITBR__xmlSet ( "LayoutViewState" ; Get ( LayoutViewState )) &__LITBR__xmlSet ( "MultiUserState" ; Get ( MultiUserState )) &__LITBR__xmlSet ( "NetworkProtocol" ; Get ( NetworkProtocol )) &__LITBR__xmlSet ( "PageNumber" ; Get ( PageNumber )) &__LITBR__xmlSet ( "PortalRowNumber" ; Get ( PortalRowNumber )) &__LITBR__xmlSet ( "PreferencesPath" ; Get ( PreferencesPath )) &__LITBR__xmlSet ( "PrinterName" ; Get ( PrinterName )) &__LITBR__xmlSet ( "PrivilegeSetName" ; Get ( PrivilegeSetName )) &__LITBR__xmlSet ( "RecordAccess" ; Get ( RecordAccess )) &__LITBR__xmlSet ( "RecordID" ; Get ( RecordID )) &__LITBR__xmlSet ( "RecordModificationCount" ; Get ( RecordModificationCount )) &__LITBR__xmlSet ( "RecordNumber" ; Get ( RecordNumber )) &__LITBR__xmlSet ( "RecordOpenCount" ; Get ( RecordOpenCount )) &__LITBR__xmlSet ( "RecordOpenState" ; Get ( RecordOpenState )) &__LITBR__xmlSet ( "RequestCount" ; Get ( RequestCount )) &__LITBR__xmlSet ( "RequestOmitState" ; Get ( RequestOmitState )) &__LITBR__xmlSet ( "ScreenDepth" ; Get ( ScreenDepth )) &__LITBR__xmlSet ( "ScreenHeight" ; Get ( ScreenHeight )) &__LITBR__xmlSet ( "ScreenWidth" ; Get ( ScreenWidth )) &__LITBR__xmlSet ( "ScriptName" ; Get ( ScriptName )) &__LITBR__xmlSet ( "ScriptParameter" ; Get ( ScriptParameter )) &__LITBR__xmlSet ( "ScriptResult" ; Get ( ScriptResult )) &__LITBR__xmlSet ( "SortState" ; Get ( SortState )) &__LITBR__xmlSet ( "StatusAreaState" ; Get ( StatusAreaState )) &__LITBR__xmlSet ( "SystemDrive" ; Get ( SystemDrive )) &__LITBR__xmlSet ( "SystemIPAddress" ; Get ( SystemIPAddress )) &__LITBR__xmlSet ( "SystemLanguage" ; Get ( SystemLanguage )) &__LITBR__xmlSet ( "SystemNICAddress" ; Get ( SystemNICAddress )) &__LITBR__xmlSet ( "SystemPlatform" ; Get ( SystemPlatform )) &__LITBR__xmlSet ( "SystemVersion" ; Get ( SystemVersion )) &__LITBR__xmlSet ( "TemporaryPath" ; Get ( TemporaryPath )) &__LITBR__xmlSet ( "TextRulerVisible" ; Get ( TextRulerVisible )) &__LITBR__xmlSet ( "TotalRecordCount" ; Get ( TotalRecordCount )) &__LITBR__xmlSet ( "UserCount" ; Get ( UserCount )) &__LITBR__xmlSet ( "UserName" ; Get ( UserName )) &__LITBR__xmlSet ( "UseSystemFormatsState" ; Get ( UseSystemFormatsState )) &__LITBR__xmlSet ( "WindowContentHeight" ; Get ( WindowContentHeight )) &__LITBR__xmlSet ( "WindowContentWidth" ; Get ( WindowContentWidth )) &__LITBR__xmlSet ( "WindowDesktopHeight" ; Get ( WindowDesktopHeight )) &__LITBR__xmlSet ( "WindowDesktopWidth" ; Get ( WindowDesktopWidth )) &__LITBR__xmlSet ( "WindowHeight" ; Get ( WindowHeight )) &__LITBR__xmlSet ( "WindowLeft" ; Get ( WindowLeft )) &__LITBR__xmlSet ( "WindowMode" ; Get ( WindowMode )) &__LITBR__xmlSet ( "WindowName" ; Get ( WindowName )) &__LITBR__xmlSet ( "WindowTop" ; Get ( WindowTop )) &__LITBR__xmlSet ( "WindowVisible" ; Get ( WindowVisible )) &__LITBR__xmlSet ( "WindowWidth" ; Get ( WindowWidth )) &__LITBR__xmlSet ( "WindowZoomLevel" ; Get ( WindowZoomLevel )) &__LITBR____LITBR__// DESIGN FUNCTIONS__LITBR__xmlSet ( "DatabaseNames" ; DatabaseNames) &__LITBR__xmlSet ( "WindowNames" ; WindowNames)__LITBR____LITBR____LITBR__; [ ¶ ; "\¶" ] )__LITBR____LITBR__// ===================================__LITBR__/*__LITBR____LITBR__ This function is published on FileMaker Custom Functions__LITBR__ to check for updates and provide feedback and bug reports__LITBR__ please visit http://www.fmfunctions.com/fid/108__LITBR____LITBR__ Prototype: StatusLog( )__LITBR__ Function Author: Fabrice (http://www.fmfunctions.com/mid/37)__LITBR__ Last updated: 15 May 2009__LITBR__ Version: 1.2__LITBR____LITBR__*/__LITBR__// ===================================
Comments
12 November 2014
/*
StatusLog ()
by Fabrice Nordmann
v2, Jan 2008
- uses xmlSet
v1, April 2007
Logs all Get functions and some Design functions as an xml string
*/
Substitute (
// GET FUNCTIONS
xmlSet ( "AccountName" ; Get ( AccountName )) &
xmlSet ( "ActiveFieldContents" ; Get ( ActiveFieldContents )) &
xmlSet ( "ActiveFieldName" ; Get ( ActiveFieldName )) &
xmlSet ( "ActiveFieldTableName" ; Get ( ActiveFieldTableName )) &
xmlSet ( "ActiveLayoutObjectName" ; Get ( ActiveLayoutObjectName )) &
xmlSet ( "ActiveModifierKeys" ; Get ( ActiveModifierKeys )) &
xmlSet ( "ActiveRepetitionNumber" ; Get ( ActiveRepetitionNumber )) &
xmlSet ( "ActiveSelectionSize" ; Get ( ActiveSelectionSize )) &
xmlSet ( "ActiveSelectionStart" ; Get ( ActiveSelectionStart )) &
xmlSet ( "AllowAbortState" ; Get ( AllowAbortState )) &
xmlSet ( "AllowToolbarState" ; Get ( AllowFormattingBarState )) &
xmlSet ( "ApplicationLanguage" ; Get ( ApplicationLanguage )) &
xmlSet ( "ApplicationVersion" ; Get ( ApplicationVersion )) &
xmlSet ( "CalculationRepetitionNumber" ; Get ( CalculationRepetitionNumber )) &
xmlSet ( "CurrentDate" ; Get ( CurrentDate )) &
xmlSet ( "CurrentHostTimestamp" ; Get ( CurrentHostTimeStamp )) &
xmlSet ( "CurrentTime" ; Get ( CurrentTime )) &
xmlSet ( "CurrentTimestamp" ; Get ( CurrentTimeStamp )) &
xmlSet ( "CustomMenuSetName" ; Get ( CustomMenuSetName )) &
xmlSet ( "DesktopPath" ; Get ( DesktopPath )) &
xmlSet ( "DocumentsPath" ; Get ( DocumentsPath )) &
xmlSet ( "ErrorCaptureState" ; Get ( ErrorCaptureState )) &
xmlSet ( "ExtendedPrivileges" ; Get ( CurrentExtendedPrivileges )) &
xmlSet ( "FileMakerPath" ; Get ( FileMakerPath )) &
xmlSet ( "FileName" ; Get ( FileName )) &
xmlSet ( "FilePath" ; Get ( FilePath )) &
xmlSet ( "FileSize" ; Get ( FileSize )) &
xmlSet ( "FoundCount" ; Get ( FoundCount )) &
xmlSet ( "HighContrastColor" ; Get ( HighContrastColor )) &
xmlSet ( "HighContrastState" ; Get ( HighContrastState )) &
xmlSet ( "HostApplicationVersion" ; Get ( HostApplicationVersion )) &
xmlSet ( "HostIPAddress" ; Get ( HostIPAddress )) &
xmlSet ( "HostName" ; Get ( HostName )) &
xmlSet ( "LastError" ; Get ( LastError )) &
xmlSet ( "LastMessageChoice" ; Get ( LastMessageChoice )) &
xmlSet ( "LastODBCError" ; Get ( LastODBCError )) &
xmlSet ( "LayoutAccess" ; Get ( LayoutAccess )) &
xmlSet ( "LayoutCount" ; Get ( LayoutCount )) &
xmlSet ( "LayoutName" ; Get ( LayoutName )) &
xmlSet ( "LayoutNumber" ; Get ( LayoutNumber )) &
xmlSet ( "LayoutTableName" ; Get ( LayoutTableName )) &
xmlSet ( "LayoutViewState" ; Get ( LayoutViewState )) &
xmlSet ( "MultiUserState" ; Get ( MultiUserState )) &
xmlSet ( "NetworkProtocol" ; Get ( NetworkProtocol )) &
xmlSet ( "PageNumber" ; Get ( PageNumber )) &
xmlSet ( "PortalRowNumber" ; Get ( ActivePortalRowNumber )) &
xmlSet ( "PreferencesPath" ; Get ( PreferencesPath )) &
xmlSet ( "PrinterName" ; Get ( PrinterName )) &
xmlSet ( "PrivilegeSetName" ; Get ( CurrentPrivilegeSetName )) &
xmlSet ( "RecordAccess" ; Get ( RecordAccess )) &
xmlSet ( "RecordID" ; Get ( RecordID )) &
xmlSet ( "RecordModificationCount" ; Get ( RecordModificationCount )) &
xmlSet ( "RecordNumber" ; Get ( RecordNumber )) &
xmlSet ( "RecordOpenCount" ; Get ( RecordOpenCount )) &
xmlSet ( "RecordOpenState" ; Get ( RecordOpenState )) &
xmlSet ( "RequestCount" ; Get ( RequestCount )) &
xmlSet ( "RequestOmitState" ; Get ( RequestOmitState )) &
xmlSet ( "ScreenDepth" ; Get ( ScreenDepth )) &
xmlSet ( "ScreenHeight" ; Get ( ScreenHeight )) &
xmlSet ( "ScreenWidth" ; Get ( ScreenWidth )) &
xmlSet ( "ScriptName" ; Get ( ScriptName )) &
xmlSet ( "ScriptParameter" ; Get ( ScriptParameter )) &
xmlSet ( "ScriptResult" ; Get ( ScriptResult )) &
xmlSet ( "SortState" ; Get ( SortState )) &
xmlSet ( "StatusAreaState" ; Get ( StatusAreaState )) &
xmlSet ( "SystemDrive" ; Get ( SystemDrive )) &
xmlSet ( "SystemIPAddress" ; Get ( SystemIPAddress )) &
xmlSet ( "SystemLanguage" ; Get ( SystemLanguage )) &
xmlSet ( "SystemNICAddress" ; Get ( SystemNICAddress )) &
xmlSet ( "SystemPlatform" ; Get ( SystemPlatform )) &
xmlSet ( "SystemVersion" ; Get ( SystemVersion )) &
xmlSet ( "TemporaryPath" ; Get ( TemporaryPath )) &
xmlSet ( "TextRulerVisible" ; Get ( TextRulerVisible )) &
xmlSet ( "TotalRecordCount" ; Get ( TotalRecordCount )) &
xmlSet ( "UserCount" ; Get ( UserCount )) &
xmlSet ( "UserName" ; Get ( UserName )) &
xmlSet ( "UseSystemFormatsState" ; Get ( UseSystemFormatsState )) &
xmlSet ( "WindowContentHeight" ; Get ( WindowContentHeight )) &
xmlSet ( "WindowContentWidth" ; Get ( WindowContentWidth )) &
xmlSet ( "WindowDesktopHeight" ; Get ( WindowDesktopHeight )) &
xmlSet ( "WindowDesktopWidth" ; Get ( WindowDesktopWidth )) &
xmlSet ( "WindowHeight" ; Get ( WindowHeight )) &
xmlSet ( "WindowLeft" ; Get ( WindowLeft )) &
xmlSet ( "WindowMode" ; Get ( WindowMode )) &
xmlSet ( "WindowName" ; Get ( WindowName )) &
xmlSet ( "WindowTop" ; Get ( WindowTop )) &
xmlSet ( "WindowVisible" ; Get ( WindowVisible )) &
xmlSet ( "WindowWidth" ; Get ( WindowWidth )) &
xmlSet ( "WindowZoomLevel" ; Get ( WindowZoomLevel )) &
// DESIGN FUNCTIONS
xmlSet ( "DatabaseNames" ; DatabaseNames) &
xmlSet ( "WindowNames" ; WindowNames)
; [ ¶ ; "\¶" ] )
// ===================================
/*
This function is published on FileMaker Custom Functions
to check for updates and provide feedback and bug reports
please visit http://www.fmfunctions.com/fid/108
Prototype: StatusLog( )
Function Author: Fabrice (http://www.fmfunctions.com/mid/37)
Last updated: 15 May 2009
Version: 1.2
*/
// ===================================