papydall
Nombre de messages : 7017 Age : 74 Localisation : Moknine (Tunisie) Entre la chaise et le clavier Date d'inscription : 03/03/2012
| Sujet: Re: Tests de KGF.dll Mer 21 Oct 2015 - 20:32 | |
| Testez ce code : - Code:
-
full_space 0 memo 1 : width 1,width(0)/2-100 : height 1,height(0)-50 : top 1,50 : left 1,50 : bar_both 1 memo 2 : width 2,width(0)/2-100 : height 2,height(0)-50 : top 2,50 : left 2, width(1) + 100: bar_both 2 font_bold 1 : font_bold 2 execute_wait "PowerShell help |clip" item_add 1,clipboard_string_paste$
execute_wait "PowerShell get-help * |clip" item_add 2,clipboard_string_paste$
- Spoiler:
| |
|
Klaus
Nombre de messages : 12331 Age : 75 Localisation : Ile de France Date d'inscription : 29/12/2009
| Sujet: Re: Tests de KGF.dll Mer 21 Oct 2015 - 20:51 | |
| | |
|
papydall
Nombre de messages : 7017 Age : 74 Localisation : Moknine (Tunisie) Entre la chaise et le clavier Date d'inscription : 03/03/2012
| Sujet: Re: Tests de KGF.dll Mer 21 Oct 2015 - 21:00 | |
| Sous W7 PowerShell se trouve dans : C:\WINDOWS\system32\WindowsPowerShell\v1.0Des fichiers textes (.txt) donnent des descriptions utiles pour (toutes ?) les commandes. C’est dans : C:\WINDOWS\system32\WindowsPowerShell\v1.0\fr-FRREM : Vous pouvez faire un click droit sur powershell.exe puis Epingler à la barre de tâchesChez moi, la commande help donne : - Spoiler:
| |
|
papydall
Nombre de messages : 7017 Age : 74 Localisation : Moknine (Tunisie) Entre la chaise et le clavier Date d'inscription : 03/03/2012
| Sujet: Re: Tests de KGF.dll Jeu 22 Oct 2015 - 3:14 | |
| @Klaus - Spoiler:
1) Je n'ai pas voulu ouvrir un autre topic pour si peu, donc je poste ici. J’ai visité ton site : http://klauspanoramic.comxa.com/Externes.4.htmlDans la rubrique Externes - Citation :
- Imprimer un fichier texte formatté
Formaté (avec un seul T) 2) J’ai téléchargé Effet de la commande color sur un pictureDont voici le code - Code:
-
label change_R, change_R1 label change_G, change_G1 label change_B, change_B1
dim v%
width 0,800 height 0,400
alpha 101 top 101,35 left 101,470 caption 101,"Couleur voulue"
alpha 102 top 102,35 left 102,600 caption 102,"Couleur obtenue"
alpha 1 top 1,55 left 1,10 caption 1,"R"
track_bar 2 top 2,50 left 2,40 width 2,402 horizontal 2 min 2,0 max 2,255 position 2,0 on_change 2,change_R
edit 3 top 3,55 left 3,470 on_change 3,change_R1
edit 4 top 4,55 left 4,600
alpha 11 top 11,85 left 11,10 caption 11,"G"
track_bar 12 top 12,80 left 12,40 width 12,402 horizontal 12 min 12,0 max 12,255 position 12,0 on_change 12,change_G
edit 13 top 13,85 left 13,470 on_change 13,change_G1
edit 14 top 14,85 left 14,600
alpha 21 top 21,115 left 21,10 caption 21,"B"
track_bar 22 top 22,110 left 22,40 width 22,402 horizontal 22 min 22,0 max 22,255 position 22,0 on_change 22,change_B
edit 23 top 23,115 left 23,470 on_change 23,change_B1
edit 24 top 24,115 left 24,600
picture 5 top 5,150 left 5,150 color 5,0,0,0
end
change_R: text 3,str$(position(2)) color 5,position(2),position(12),position(12) text 4,color_pixel_red(5,10,10) text 14,color_pixel_green(5,10,10) text 24,color_pixel_blue(5,10,10) return change_R1: if numeric(text$(3))=1 v% = val(text$(3)) if v%>=0 and v%<256 then position 2,val(text$(3)) end_if return
change_G: text 13,str$(position(12)) color 5,position(2),position(12),position(12) text 4,color_pixel_red(5,10,10) text 14,color_pixel_green(5,10,10) text 24,color_pixel_blue(5,10,10) return change_G1: if numeric(text$(13))=1 v% = val(text$(13)) if v%>=0 and v%<256 then position 12,val(text$(13)) end_if return
change_B: text 23,str$(position(22)) color 5,position(2),position(12),position(12) text 4,color_pixel_red(5,10,10) text 14,color_pixel_green(5,10,10) text 24,color_pixel_blue(5,10,10) return change_B1: if numeric(text$(23))=1 v% = val(text$(23)) if v%>=0 and v%<256 then position 22,val(text$(23)) end_if return
Je pense qu’il y ait une erreur de frappe aux lignes 117 et 131 - Code:
-
color 5,position(2),position(12),position(12)
Ça devrait être - Code:
-
color 5,position(2),position(12),position(22)
| |
|