InterviewSolution
Saved Bookmarks
| 1. |
What Is Halt? Halt Close? What Is The Difference Between Them? |
|
Answer» HALT : Halt statement forces the application to terminate IMMEDIATELY. This is most often used to shut down the application after a SERIOUS error occurred. HALT CLOSE : Halt Close does the same thing but TRIGGERS the application OBJECT’s Close EVENT before terminating. HALT : Halt statement forces the application to terminate immediately. This is most often used to shut down the application after a serious error occurred. HALT CLOSE : Halt Close does the same thing but triggers the application object’s Close event before terminating. |
|