JakeBullet70 Well-Known Member Licensed User Longtime User Jul 22, 2016 #1 Am I missing something. (Stop laughing everybody) But in a console app is there a closing event? I do the 'StartMessageLoop' and it all runs... If Linux kills the process do i get an event?
Am I missing something. (Stop laughing everybody) But in a console app is there a closing event? I do the 'StartMessageLoop' and it all runs... If Linux kills the process do i get an event?
Erel B4X founder Staff member Licensed User Longtime User Jul 22, 2016 #2 There are no events when a process is killed. This is also true for UI apps. This means that the only way for a console app to be closed (after StartMessageLoop was called) is by a call to ExitApplication or StopMessageLoop. Upvote 0
There are no events when a process is killed. This is also true for UI apps. This means that the only way for a console app to be closed (after StartMessageLoop was called) is by a call to ExitApplication or StopMessageLoop.
JakeBullet70 Well-Known Member Licensed User Longtime User Oct 7, 2016 #3 Thinking about this as I did some .NET programming for my day job. In Windows we can get the closing event with arguments. Is this a java thing? Upvote 0
Thinking about this as I did some .NET programming for my day job. In Windows we can get the closing event with arguments. Is this a java thing?
Erel B4X founder Staff member Licensed User Longtime User Oct 9, 2016 #4 This is similar to MainForm_Closed (or Closing) events. It is not relevant to non-ui applications. Upvote 0
LucaMs Expert Licensed User Longtime User Oct 9, 2016 #5 JakeBullet70 said: (Stop laughing everybody) Click to expand... Upvote 0