# Misc Form This page is about {ref}`Misc` dedicated `TLazForm` utilities. This is meant to be used with {ref}`TScriptForm` with {ref}`TScriptForm.CreateMiscTab` and will setup a a `TLazTabSheet` on it with several controls to configure {ref}`Misc`: ```{figure} ../../images/waspclientform.png ``` - - - ## ScriptForm CreateInventoryTab ```pascal function TScriptForm.CreateInventoryTab(): TLazTabSheet; ``` Sets up a `TLazTabSheet` on your `TScriptForm` to configure your `Inventory Layouts`. Example: ```pascal {$I WaspLib/osrs.simba} var form: TScriptForm; begin form.Setup(); form.CreateInventoryTab(); form.Run(); end. ``` ```{figure} ../../images/inventoryform.gif ``` For a more complete example check out the file `Simba/Includes/WaspLib/examples/inventory_form.simba`.