How to detect whether application started from startup or started by user?
        Posted  
        
            by CSharpBeginner
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by CSharpBeginner
        
        
        
        Published on 2010-05-31T15:44:59Z
        Indexed on 
            2010/05/31
            15:52 UTC
        
        
        Read the original article
        Hit count: 169
        
c#
Hello, I'm making a windows forms application in c# that will start in windows start up . User also can start the application from its icon on desktop.I want the application to be minimized in system tray if it was started from windows start up and to be in normal windows state if started by user clicking on its shortcut icon. Is there a a way to detect whether the application started by user or by start up ? ((EDIT)) i am using this code to make application appear on startup regesiterykey.SetValue("MyApp", Application.ExecutablePath.ToString());
© Stack Overflow or respective owner