This is a bug fix release targeting issues reported for 11.3.4309.
IFilter::BuildDescription method generates human-readable filter summaries and formatted XML. Ctrl+C in filter UI and advanced search dialog copies readable summary, Ctrl+Shift+C copies full XML.IClass::DescriptionFormat allows setting a LimeFormula expression on a class that overrides Record.Description output. Uses [fieldname] brackets for field references, evaluated as VBScript. Examples:' Simple field
[name]
' Two fields with separator
[firstname] & " " & [lastname]
' Company with city
[name] & " - " & [city]
' Deal with value and stage
[name] & " (" & [dealvalue] & " kr, " & [dealstatus] & ")"
' Relation traversal via dot-path
[firstname] & " " & [lastname] & ", " & [company.name]
' Conditional using IIf
[name] & IIf([status] <> "", " [" & [status] & "]", "")
' Ticket with ID prefix
"#" & [idhelpdeskticket] & " " & [title]
If the expression returns an empty string, the default description (descriptive field) is used as fallback.
Application\Options\HiddenSettings in application settings (ISettings). Each value is a DWORD: 1 = hidden, 0 or absent = visible. Administrators always see all controls regardless of the setting. Available settings:; Misc Options Page MiscOptionsPage.ConfirmQuit MiscOptionsPage.ShowTodo MiscOptionsPage.EnableInspectorFullTextSearch MiscOptionsPage.ShowDocumentOpenOptions MiscOptionsPage.ShowInsight MiscOptionsPage.SearchRecipients MiscOptionsPage.UseChromium MiscOptionsPage.UseTimezoneConversion MiscOptionsPage.DimFieldsIfNULL MiscOptionsPage.PreferWebClient MiscOptionsPage.AllowWebClient ; Explorers Options Page ExplorersOptionsPage.UseTooltipForTruncatedValues ExplorersOptionsPage.KeepTextFilter ExplorersOptionsPage.PreviewInspectorTabContents
Application\IntegrateWebClient setting (DWORD: 0 = disabled, 1 = enabled). When disabled user level settings for integration are ignored and hidden.InputBox and MsgBox dialogs are now modal to the application's main window, preventing user interaction behind them. This resolves heap corruption crashes caused by reentrancy when the dialog's message pump dispatched timers and other messages.DllPrepareShutdown mechanism allows helper DLLs to clean up gracefully before COM apartments are torn down.Explorer.Class no longer returns E_INVALIDARG when the explorer has no records loaded and no default class is configured.