Misc Form

This page is about Misc dedicated TLazForm utilities.

This is meant to be used with TScriptForm with TScriptForm.CreateMiscTab and will setup a a TLazTabSheet on it with several controls to configure Misc:

_images/waspclientform.png

ScriptForm CreateInventoryTab

function TScriptForm.CreateInventoryTab(): TLazTabSheet;

Sets up a TLazTabSheet on your TScriptForm to configure your Inventory Layouts.

Example:

{$I WaspLib/osrs.simba}
var
  form: TScriptForm;
begin
  form.Setup();
  form.CreateInventoryTab();
  form.Run();
end.
_images/inventoryform.gif

For a more complete example check out the file Simba/Includes/WaspLib/examples/inventory_form.simba.