| **Navigation:**  [[abc library reference.htm|ABC Library Reference]] > FileManager > FileManager Methods >====== Kill (shutdown the FileManager object) {{c6h0009.jpg|C6H0009.jpg}} ====== | [[keytoorder return order expression for a key .htm|{{btn_prev_n.gif|Previous page}}]][[abc library reference.htm|{{btn_home_n.gif|Return to chapter overview}}]][[next get next record in sequence .htm|{{btn_next_n.gif|Next page}}]] | | || **Kill, VIRTUAL** {{blk2blue.jpg|blk2blue.jpg}} The **Kill **method disposes any memory allocated during the object's lifetime and performs any other necessary termination code. **Example:** **PROGRAM** ** INCLUDE('ABFILE.INC')            !declare FileManager class** ** MAP                              !program map** ** END** **GlobalErrors ErrorClass           !declare GlobalErrors object** **Access:Client CLASS(FileManager)  !derive Access:Client object** **              END** **Client    FILE,DRIVER('TOPSPEED'),PRE(CLI),CREATE,BINDABLE,THREAD** **IDKey      KEY(CLI:ID),NOCASE,OPT,PRIMARY** **Record     RECORD,PRE()** **ID          LONG** **Name        STRING(20)** **StateCode   STRING(2)** **           END** **          END** ** CODE** ** GlobalErrors.Init                !initialize the GlobalErrors object** ** Access:Client.Init               !initialize Access:Client object** ** !program code** ** Access:Client.Kill               !shut down the Access:Client object** ** GlobalErrors.Kill**