Jump to content

Startup


Recommended Posts

ahhhm... das gleiche script per autostart nur als tray-icon (also GUI = @SW_HIDE) und sonst sichtbar (@SW_SHOW) starten. wie geht das?

Depends on how will you show the GUI later? Will you click on a menu button in the tray icon, or click on the tray icon?

Whatever it is, you will have to call a function that will show the GUI at a point.. Something has to 'trigger' the GUI to show..

Link to comment
Share on other sites

Global $sw_GUIStartupStatus = @SW_SHOW
If $CmdLine[0] > 0 Then
    If $CmdLine[1] = "-tray" Then
        $sw_GUIStartupStatus = @SW_HIDE
        TraySetState(1)
    EndIf
EndIf

;GUICreate(...)
;GUICreateVariousContolsHere

GUISetState( $sw_GUIStartupStatus )

Then when the program is run on startup, have it run the executable with the parameter -tray, like so:

C:\Program Files\My Program\MyProgram.exe -tray

"So man has sown the wind and reaped the world. Perhaps in the next few hours there will no remembrance of the past and no hope for the future that might have been." & _"All the works of man will be consumed in the great fire after which he was created." & _"And if there is a future for man, insensitive as he is, proud and defiant in his pursuit of power, let him resolve to live it lovingly, for he knows well how to do so." & _"Then he may say once more, 'Truly the light is sweet, and what a pleasant thing it is for the eyes to see the sun.'" - The Day the Earth Caught Fire

Link to comment
Share on other sites

Global $sw_GUIStartupStatus = @SW_SHOW
If $CmdLine[0] > 0 Then
    If $CmdLine[1] = "-tray" Then
        $sw_GUIStartupStatus = @SW_HIDE
        TraySetState(1)
    EndIf
EndIf

;GUICreate(...)
;GUICreateVariousContolsHere

GUISetState( $sw_GUIStartupStatus )

Then when the program is run on startup, have it run the executable with the parameter -tray, like so:

C:\Program Files\My Program\MyProgram.exe -tray

I was just typing out the same, but then I noticed you had already posted... Damn, I have to be faster next time.

I like -boot or boot as a command line parameter.. :whistle:

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...