App in Autostart how to hide it?

Georg

Member
Licensed User
Longtime User
Hi

I have an app placed in Autostart (Basic4ppc app) and when i close the Mainform it is absolutly closed. How to hide the app without moving from the memory?
 

Pachuquin

Member
Licensed User
Longtime User
You must add a hardware object.

Sub App_Start

hardware1.new1

End Sub

Sub MainForm_Close

hardware1.ShowTodayScreen
MainForm.CancelClose

End Sub

We are hidding the form, not closing it.
 
Last edited:
Top