diff --git a/docs/xml/lcl/buttons.xml b/docs/xml/lcl/buttons.xml index 27aa03ea8f..64553ee50e 100644 --- a/docs/xml/lcl/buttons.xml +++ b/docs/xml/lcl/buttons.xml @@ -1,6 +1,6 @@ - + Defines several specialist button classes @@ -640,7 +640,7 @@ bkYesToAll Indicates the policy for showing or hiding the glyph image of this button - + diff --git a/docs/xml/lcl/controls.xml b/docs/xml/lcl/controls.xml index f1508863dd..795ae3b6f0 100644 --- a/docs/xml/lcl/controls.xml +++ b/docs/xml/lcl/controls.xml @@ -7553,9 +7553,9 @@ dmFindTarget: find child control under the mouse - The accessible role of the control which classifies what kind of object this is. See TLazAccessibleRole for a list of possible values + The accessible role of the control which classifies what kind of object this is. See TLazAccessibilityRole for a list of possible values - + diff --git a/docs/xml/lcl/forms.xml b/docs/xml/lcl/forms.xml index d95831ca7a..8d01e5f9ee 100644 --- a/docs/xml/lcl/forms.xml +++ b/docs/xml/lcl/forms.xml @@ -1,4 +1,4 @@ - + - When True every form must have a resource + When True every form must have a resource. An exception is raised if the resource is missing when creating a form. The form resource is the lfm file compiled into the executable of your application. For this flag it does not matter if it was compiled via an lrs file or via fpcres. The resource is automatically loaded by TForm and therfore any descendant when it is created via Create(Owner). If the resource is missing there is something wrong with either a resource or the unit which contains the faulty form. If the flag is false you will see a blank form and probably search a long time what is wrong. If you set this flag to true you get an exception. For creating forms without resources you have 3 options:
  • Create a TForm class (not a descendant)
  • Construct your form using the CreateNew() constructor.
  • It is also possible to disable the exception by setting the global variable RequireDerivedFormResource to False.
- -History:</br> -Before 0.9.31 there was no exception. Therefore some resourceless forms might use the standard constructor Create(Owner) and will now get exceptions. This change is Delphi compatible and compatible with TFrame and TDataModule components.
+History:
+Before 0.9.31 there was no exception. Therefore some resourceless forms might use the standard constructor Create(Owner) and will now get exceptions. This change is Delphi compatible and compatible with TFrame and TDataModule components. +
?