Cacher une application du Processus

g0belin Messages postés 155 Date d'inscription jeudi 6 décembre 2001 Statut Membre Dernière intervention 19 avril 2010 - 29 déc. 2002 à 21:13
hardghost Messages postés 2 Date d'inscription jeudi 3 juillet 2008 Statut Membre Dernière intervention 1 septembre 2008 - 1 sept. 2008 à 23:57
Est-t-il possible de caché sont application du Processus quand on fait [Ctrl+Alt+Del] ?

Et si oui comment ?

merci d'avance de vos reponse !

6 réponses

cs_Delphiprog Messages postés 4297 Date d'inscription samedi 19 janvier 2002 Statut Membre Dernière intervention 9 janvier 2013 32
29 déc. 2002 à 22:52
0
cs_Amadeus Messages postés 123 Date d'inscription mercredi 2 janvier 2002 Statut Membre Dernière intervention 15 mars 2004 2
30 déc. 2002 à 15:59
Pour cacher l'appli il faut utiliser :
ShowWindow(Application.Handle, SW_HIDE);

Il existe d'autre valeurs a mettre à la place de SW_HIDE :
SW_HIDE
SW_MAXIMIZE
SW_RESTORE
SW_SHOW
SW_SHOWDEFAULT
SW_SHOWMINIMIZED
SW_SHOWMINNOACTIVE
SW_SHOWNA
SW_SHOWNOACTIVATE
SW_SHOWNORMAL
0
whatsthefuckisthat Messages postés 6 Date d'inscription lundi 5 juin 2006 Statut Membre Dernière intervention 12 juin 2006
12 juin 2006 à 07:40
Bjr,

Ou faut il écrire ShowWindow ?  
Peut on aussi cacher l'application dant 'ajout/suppr de programmes' ? Peut on en cacher plusieurs en même tps ?
Merci d'avance de ta réponse
0
amarmessaad Messages postés 1 Date d'inscription lundi 27 novembre 2006 Statut Membre Dernière intervention 16 mars 2007
16 mars 2007 à 15:08
Program

Project1;


Uses

Forms,windows,

Unit1 in 'Unit1.pas'{FMain};


{$R *.RES}


Begin

Application.ShowMainForm:=False;//Cette
commande permet de cacher la fiche principale

Application.Initialize;

Application.Title:='Application Cachée';

Application.CreateForm(TFMain,FMain);

Application.Run;

End.
-----------------------------------
copier coller
----------------------------------
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
alex3105 Messages postés 14 Date d'inscription vendredi 10 février 2006 Statut Membre Dernière intervention 30 mars 2009
10 févr. 2008 à 18:52
pas sous NT windows's
0
hardghost Messages postés 2 Date d'inscription jeudi 3 juillet 2008 Statut Membre Dernière intervention 1 septembre 2008
1 sept. 2008 à 23:57
Thank you!

____
0
Rejoignez-nous