|
Novice question
I have a LognFrm form (normal form). . . There is also a MainFrm form (MDI main form)
When I am running, the LognFrm form appears first, and MainFrm appears after verifying the password
The code is:
The OK button in LognFrm (If the password is not verified first, click OK to enter)
Self.Hied;
Application.CreateFrom(TMainFrm,MainFrm);
MainFrm.show;
It is normal after entering, that is, when I close MainFrm, why can't I exit the entire program normally, there is still in the process. . I did not release the memory, I used a lot of commands, such as Free, etc., all of them were like this, and an error was reported. . Is it because I didn't use it together, so something went wrong? Please help me to see it. . . Thank you. |
|