Bonjour

J'utilise le code suivant pour enlever mon application de la barre des tâches

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
  ShowWindow(application.Handle, SW_HIDE);
  SetWindowLong(application.Handle, GWL_EXSTYLE, WS_EX_TOOLWINDOW);
  ShowWindow(application.Handle, SW_SHOW);
Je l'ai trouvé ici (merci Claudius 40)
http://www.developpez.net/forums/sho...r+barre+taches

Bon maintenant, comment je fais pour la faire apparaître à nouveau dans la barre des tâches ?