Accueil > > > HOLORGE À AIGUILLE EN PICWIN
HOLORGE À AIGUILLE EN PICWIN
Information sur la source
Description
Comme le titre l'indique il s'agit d'une horloge a aiguille faite dans une picwin. Le temps est égrener avec un timer 0 1 elle a deux autres fonction : -compte a rebours -chronometre Il y a une possibilité de remise a l'heure manuelle et automatique (a l'heure de l'ordinateur) On peut rajouter un affichage digitale ( comme sur la capture ) Les heures sont en rouge ainsi que les minutes les secondes sont en vert Upadate : pour lancer l'horloge en mode horloge taper /clock -t pour lancer l'horloge en mode chronomètre taper /clock -c pour lancer l'horloge en mode compte a rebours taper /clock -r (cette derniere fonction n'est pas tout a fait au point)
Source
- alias clock {
- if ( !$hget(t).size ) { hmake t 20 }
- hload -i t horloge.ini h
- if ( $1 = -c) { hadd -m t h 0 | hadd -m t m 0 | hadd -m t s 0 }
- elseif ( $1 = -t ) { exact_h }
- elseif ( $1 = -r ) {
- var %time = $$?="entrez un temps au format heure:minute:seconde"
- hadd -m t s $gettok(%time,3,58)
- hadd -m t m $gettok(%time,2,58)
- hadd -m t h $iif( $gettok(%time,1,58) < 12 ,$gettok(%time,1,58),$calc($gettok(%time,1,58) -12))
- }
- if ( $window(@horloge)) { clear @horloge }
- else { window -ap @horloge $calc($window(-1).w -218) 0 218 240 }
- put_number | put_h | put_m | put_s | hadd -m t state $1
- var %h = $hget(t,h),%m = $iif($len($hget(t,m)) = 1,0 $+ $hget(t,m),$hget(t,m)),%s = $iif($len($hget(t,s)) = 1,0 $+ $hget(t,s),$hget(t,s))
- set %time $+(%h,:,%m,:,%s)
- .timercercle 0 1 wth2 $1
- }
-
- alias wth2 {
- drawline @horloge 0 0 100 100 $calc(100- 70*$cos($pos.s)) $calc(100- 70*$sin($pos.s))
- if ($1) { goto $1 }
- :-c
- :-t
- hinc t s
- put_s
- draw_aiguille
- if ( $hget(t,s) = 60 ) { hadd -m t s 0 | drawline @horloge 0 0 100 100 $calc(100- 60*$cos($pos.m)) $calc(100- 60*$sin($pos.m)) | hinc t m | put_m }
- if ( $hget(t,m) = 60 ) { hadd -m t m 0 | drawline @horloge 0 0 100 100 $calc(100- 40*$cos($pos.h)) $calc(100- 40*$sin($pos.h)) | hinc t h | if ( $ghet(t,s) != $gettok($time,3,58) ) && ( $1 = -c ) && ( $hget(t,auto) = on ) { exact_h | put_number } | refresh_m | put_m | put_h }
- if ( $hget(t,h) = 13 ) { hadd -m t h 1 | put_number | put_h }
- goto end
- :-r
- hdec t s
- put_s
- draw_aiguille
- if ( $hget(t,s) = -1 ) { hadd -m t s 59 | drawline @horloge 0 0 100 100 $calc(100- 60*$cos($pos.m)) $calc(100- 60*$sin($pos.m)) | hdec t m | put_m }
- if ( $hget(t,m) = -1 ) { hadd -m t m 59 | drawline @horloge 0 0 100 100 $calc(100- 40*$cos($pos.h)) $calc(100- 40*$sin($pos.h)) | hdec t h | put_m | put_h | refresh_m }
- if ( $hget(t,h) <= 0 ) { hadd -m t h 0 }
- if ( $hget(t,h) = 0 ) && ( $hget(t,m) = 0) && ( $hget(t,s) = 0 ) { echo -a [Horloge] Compte a rembours terminé | .timercercle off | clock -t }
- :end
- if ($hget(t,digit) = on) {
- var %h = $hget(t,h),%m = $iif($len($hget(t,m)) = 1,0 $+ $hget(t,m),$hget(t,m)),%s = $iif($len($hget(t,s)) = 1,0 $+ $hget(t,s),$hget(t,s))
- drawrect @horloge 1 0 76 150 44 12
- drawtext @horloge 0 arial 9 80 150 %time
- drawtext @horloge 1 arial 9 80 150 $+(%h,:,%m,:,%s)
- set %time $+(%h,:,%m,:,%s)
- }
- }
-
- alias exact_h { hadd -m t s $gettok($time,3,58) | hadd -m t m $gettok($time,2,58) | hadd -m t h $iif($gettok($time,1,58) <= 12,$ifmatch,$calc($ifmatch -12)) }
- alias pos.s { var %itr = 1.5,%i = 2,%r = $iif($hget(t,s) != 0 ,$ifmatch,60) | while ( %i <= %r ) { inc %i | if ( %itr <= 4.7) { inc %itr 0.11 } | else { inc %itr 0.1 } } | return %itr }
- alias pos.m { var %itr = 1.5,%i = 2,%r = $iif($hget(t,m) != 0 ,$ifmatch,60) | while ( %i <= %r ) { inc %i | if ( %itr <= 4.7) { inc %itr 0.11 } | else { inc %itr 0.1 } } | return %itr }
- alias pos.h { if ( $hget(t,h) = 12) { return 1.5 } | var %itr = 2,%i = 2,%m = $hget(t,h) | while (%i <= %m ) { inc %i 1 | inc %itr 0.54 } | return %itr }
- alias draw_aiguille {
- drawline @horloge 1 0 100 100 $calc(100- 70*$cos($pos.s)) $calc(100- 70*$sin($pos.s))
- drawline @horloge 1 0 100 100 $calc(100- 60*$cos($pos.m)) $calc(100- 60*$sin($pos.m))
- drawline @horloge 1 0 100 100 $calc(100- 40*$cos($pos.h)) $calc(100- 40*$sin($pos.h))
- }
-
- alias put_s {
- var %itr = 1.5,%i = 1,%m = $hget(t,m),%s = $hget(t,s)
- while ( %itr <= 7.7 ) {
- if ( %i = %m ) || ((%m = 0) && (%s = 1)) { goto end }
- elseif ( %i = $calc(%s -1)) || ( %i = $calc(%s +1)) { drawtext @horloge 1 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0) }
- elseif ( %i = %s) { drawtext @horloge 3 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0) }
- if ( %s = 1 ) { drawtext @horloge 1 arial 8 $int($calc(100- (100* $cos(7.7)))) $int($calc(100- (100* $sin(7.7)))) 0 }
- :end
- inc %i 1
- if ( %itr <= 4.7) { inc %itr 0.11 }
- else { inc %itr 0.1 }
- }
- }
-
- alias put_m {
- var %itr = 1.5,%i = 1,%m = $hget(t,m)
- while ( %itr <= 7.7 ) {
- if ( %i = $calc(%m -1)) || ( %i = $calc(%m +1)) { drawtext @horloge 1 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0) }
- elseif ( %i = %m) { drawtext @horloge 4 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0) }
- elseif ( %m = 0 ) { drawtext @horloge 4 arial 8 $int($calc(100- (100* $cos(7.7)))) $int($calc(100- (100* $sin(7.7)))) 0 }
- inc %i 1
- if ( %itr <= 4.7) { inc %itr 0.11 }
- else { inc %itr 0.1 }
- }
- }
-
- alias put_h {
- if ( $hget(t,h) = 12) {
- drawtext @horloge 4 arial 8 $int($calc(100- (80* $cos(1.5)))) $int($calc(100- (80* $sin(1.5)))) 12
- drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(7.4)))) $int($calc(100- (80* $sin(7.4)))) 11
- }
- else {
- var %itr = 2,%i = 1,%h = $hget(t,h)
- while (%itr <= 7.7) {
- if ( %i = $calc(%h -1)) || ( %i = $calc(%h +1)) { drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(%itr)))) $int($calc(100- (80* $sin(%itr)))) %i }
- elseif ( %i = %h) { drawtext @horloge 4 arial 8 $int($calc(100- (80* $cos(%itr)))) $int($calc(100- (80* $sin(%itr)))) %i }
- inc %i 1
- inc %itr 0.54
- }
- drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(1.5)))) $int($calc(100- (80* $sin(1.5)))) 12
- }
- }
-
- alias put_number {
- clear @horloge
- var %itr = 2,%i = 1
- while (%itr <= 7.7) {
- drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(%itr)))) $int($calc(100- (80* $sin(%itr)))) %i
- inc %i 1
- inc %itr 0.54
- }
- drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(1.5)))) $int($calc(100- (80* $sin(1.5)))) 12
- refresh_m
- }
-
- alias refresh_m {
- var %itr = 1.5,%i = 1
- while ( %itr <= 7.7 ) {
- drawtext @horloge 1 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0)
- inc %i 1
- if ( %itr <= 4.7) { inc %itr 0.11 }
- else { inc %itr 0.1 }
- }
- }
-
- menu @horloge {
- Arreter l'horloge : .timercercle off | hsave -i t horloge.ini h | hfree t
- Fermer l'horloge : .timercercle off | window -c @horloge | if ($hget(t).size ) { hsave -i t horloge.ini h | hfree t }
- $iif($hget(t,state) = -t,Mettre a l'heure de l'ordinateur) : exact_h | put_number | put_h | put_m
- Mode de l'horloge
- .Horloge : clock -t
- .Chronometre : clock -c
- .Compte a rebour : clock -r
- Ecriture Digitale $hget(t,digit)
- .$iif($hget(t,digit) = on,Désactivée,Activé) : { if ( $hget(t,digit) = on ) { hadd -m t digit off | echo -a $hget(t,digit) } | else { hadd -m t digit on | echo -a $hget(t,digit) } }
- $iif($hget(t,state) = -t,Remise a l'heure)
- .Heure : {
- :start1
- var %h = $$?="entrez une heure s'il vous plus entre 0 et 12"
- if (%h > 12) { goto start1 }
- else { hadd -m t m %h }
- }
- .Minute : {
- :start2
- var %m = $$?="entrez un nombre de minute s'il vous plait entre 0 et 59"
- if (%m > 59 ) { goto start2 }
- else { hadd -m t m %m }
- }
- .Seconde : {
- :start3
- var %s = $$?="entrez un nombre de seconde s'il vous plait entre 0 et 59"
- if (%s > 59) { goto start3 }
- else { hadd -m t m %s }
- }
- .Automatique $hget(t,auto)
- ..$iif($hget(t,auto) = on,desactivée,activée) : if ( $hget(t,auto) = on ) { hadd -m t auto off } | else { hadd -m t auto on }
- }
alias clock {
if ( !$hget(t).size ) { hmake t 20 }
hload -i t horloge.ini h
if ( $1 = -c) { hadd -m t h 0 | hadd -m t m 0 | hadd -m t s 0 }
elseif ( $1 = -t ) { exact_h }
elseif ( $1 = -r ) {
var %time = $$?="entrez un temps au format heure:minute:seconde"
hadd -m t s $gettok(%time,3,58)
hadd -m t m $gettok(%time,2,58)
hadd -m t h $iif( $gettok(%time,1,58) < 12 ,$gettok(%time,1,58),$calc($gettok(%time,1,58) -12))
}
if ( $window(@horloge)) { clear @horloge }
else { window -ap @horloge $calc($window(-1).w -218) 0 218 240 }
put_number | put_h | put_m | put_s | hadd -m t state $1
var %h = $hget(t,h),%m = $iif($len($hget(t,m)) = 1,0 $+ $hget(t,m),$hget(t,m)),%s = $iif($len($hget(t,s)) = 1,0 $+ $hget(t,s),$hget(t,s))
set %time $+(%h,:,%m,:,%s)
.timercercle 0 1 wth2 $1
}
alias wth2 {
drawline @horloge 0 0 100 100 $calc(100- 70*$cos($pos.s)) $calc(100- 70*$sin($pos.s))
if ($1) { goto $1 }
:-c
:-t
hinc t s
put_s
draw_aiguille
if ( $hget(t,s) = 60 ) { hadd -m t s 0 | drawline @horloge 0 0 100 100 $calc(100- 60*$cos($pos.m)) $calc(100- 60*$sin($pos.m)) | hinc t m | put_m }
if ( $hget(t,m) = 60 ) { hadd -m t m 0 | drawline @horloge 0 0 100 100 $calc(100- 40*$cos($pos.h)) $calc(100- 40*$sin($pos.h)) | hinc t h | if ( $ghet(t,s) != $gettok($time,3,58) ) && ( $1 = -c ) && ( $hget(t,auto) = on ) { exact_h | put_number } | refresh_m | put_m | put_h }
if ( $hget(t,h) = 13 ) { hadd -m t h 1 | put_number | put_h }
goto end
:-r
hdec t s
put_s
draw_aiguille
if ( $hget(t,s) = -1 ) { hadd -m t s 59 | drawline @horloge 0 0 100 100 $calc(100- 60*$cos($pos.m)) $calc(100- 60*$sin($pos.m)) | hdec t m | put_m }
if ( $hget(t,m) = -1 ) { hadd -m t m 59 | drawline @horloge 0 0 100 100 $calc(100- 40*$cos($pos.h)) $calc(100- 40*$sin($pos.h)) | hdec t h | put_m | put_h | refresh_m }
if ( $hget(t,h) <= 0 ) { hadd -m t h 0 }
if ( $hget(t,h) = 0 ) && ( $hget(t,m) = 0) && ( $hget(t,s) = 0 ) { echo -a [Horloge] Compte a rembours terminé | .timercercle off | clock -t }
:end
if ($hget(t,digit) = on) {
var %h = $hget(t,h),%m = $iif($len($hget(t,m)) = 1,0 $+ $hget(t,m),$hget(t,m)),%s = $iif($len($hget(t,s)) = 1,0 $+ $hget(t,s),$hget(t,s))
drawrect @horloge 1 0 76 150 44 12
drawtext @horloge 0 arial 9 80 150 %time
drawtext @horloge 1 arial 9 80 150 $+(%h,:,%m,:,%s)
set %time $+(%h,:,%m,:,%s)
}
}
alias exact_h { hadd -m t s $gettok($time,3,58) | hadd -m t m $gettok($time,2,58) | hadd -m t h $iif($gettok($time,1,58) <= 12,$ifmatch,$calc($ifmatch -12)) }
alias pos.s { var %itr = 1.5,%i = 2,%r = $iif($hget(t,s) != 0 ,$ifmatch,60) | while ( %i <= %r ) { inc %i | if ( %itr <= 4.7) { inc %itr 0.11 } | else { inc %itr 0.1 } } | return %itr }
alias pos.m { var %itr = 1.5,%i = 2,%r = $iif($hget(t,m) != 0 ,$ifmatch,60) | while ( %i <= %r ) { inc %i | if ( %itr <= 4.7) { inc %itr 0.11 } | else { inc %itr 0.1 } } | return %itr }
alias pos.h { if ( $hget(t,h) = 12) { return 1.5 } | var %itr = 2,%i = 2,%m = $hget(t,h) | while (%i <= %m ) { inc %i 1 | inc %itr 0.54 } | return %itr }
alias draw_aiguille {
drawline @horloge 1 0 100 100 $calc(100- 70*$cos($pos.s)) $calc(100- 70*$sin($pos.s))
drawline @horloge 1 0 100 100 $calc(100- 60*$cos($pos.m)) $calc(100- 60*$sin($pos.m))
drawline @horloge 1 0 100 100 $calc(100- 40*$cos($pos.h)) $calc(100- 40*$sin($pos.h))
}
alias put_s {
var %itr = 1.5,%i = 1,%m = $hget(t,m),%s = $hget(t,s)
while ( %itr <= 7.7 ) {
if ( %i = %m ) || ((%m = 0) && (%s = 1)) { goto end }
elseif ( %i = $calc(%s -1)) || ( %i = $calc(%s +1)) { drawtext @horloge 1 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0) }
elseif ( %i = %s) { drawtext @horloge 3 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0) }
if ( %s = 1 ) { drawtext @horloge 1 arial 8 $int($calc(100- (100* $cos(7.7)))) $int($calc(100- (100* $sin(7.7)))) 0 }
:end
inc %i 1
if ( %itr <= 4.7) { inc %itr 0.11 }
else { inc %itr 0.1 }
}
}
alias put_m {
var %itr = 1.5,%i = 1,%m = $hget(t,m)
while ( %itr <= 7.7 ) {
if ( %i = $calc(%m -1)) || ( %i = $calc(%m +1)) { drawtext @horloge 1 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0) }
elseif ( %i = %m) { drawtext @horloge 4 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0) }
elseif ( %m = 0 ) { drawtext @horloge 4 arial 8 $int($calc(100- (100* $cos(7.7)))) $int($calc(100- (100* $sin(7.7)))) 0 }
inc %i 1
if ( %itr <= 4.7) { inc %itr 0.11 }
else { inc %itr 0.1 }
}
}
alias put_h {
if ( $hget(t,h) = 12) {
drawtext @horloge 4 arial 8 $int($calc(100- (80* $cos(1.5)))) $int($calc(100- (80* $sin(1.5)))) 12
drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(7.4)))) $int($calc(100- (80* $sin(7.4)))) 11
}
else {
var %itr = 2,%i = 1,%h = $hget(t,h)
while (%itr <= 7.7) {
if ( %i = $calc(%h -1)) || ( %i = $calc(%h +1)) { drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(%itr)))) $int($calc(100- (80* $sin(%itr)))) %i }
elseif ( %i = %h) { drawtext @horloge 4 arial 8 $int($calc(100- (80* $cos(%itr)))) $int($calc(100- (80* $sin(%itr)))) %i }
inc %i 1
inc %itr 0.54
}
drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(1.5)))) $int($calc(100- (80* $sin(1.5)))) 12
}
}
alias put_number {
clear @horloge
var %itr = 2,%i = 1
while (%itr <= 7.7) {
drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(%itr)))) $int($calc(100- (80* $sin(%itr)))) %i
inc %i 1
inc %itr 0.54
}
drawtext @horloge 1 arial 8 $int($calc(100- (80* $cos(1.5)))) $int($calc(100- (80* $sin(1.5)))) 12
refresh_m
}
alias refresh_m {
var %itr = 1.5,%i = 1
while ( %itr <= 7.7 ) {
drawtext @horloge 1 arial 8 $int($calc(100- (100* $cos(%itr)))) $int($calc(100- (100* $sin(%itr)))) $iif(%i <= 59,%i,0)
inc %i 1
if ( %itr <= 4.7) { inc %itr 0.11 }
else { inc %itr 0.1 }
}
}
menu @horloge {
Arreter l'horloge : .timercercle off | hsave -i t horloge.ini h | hfree t
Fermer l'horloge : .timercercle off | window -c @horloge | if ($hget(t).size ) { hsave -i t horloge.ini h | hfree t }
$iif($hget(t,state) = -t,Mettre a l'heure de l'ordinateur) : exact_h | put_number | put_h | put_m
Mode de l'horloge
.Horloge : clock -t
.Chronometre : clock -c
.Compte a rebour : clock -r
Ecriture Digitale $hget(t,digit)
.$iif($hget(t,digit) = on,Désactivée,Activé) : { if ( $hget(t,digit) = on ) { hadd -m t digit off | echo -a $hget(t,digit) } | else { hadd -m t digit on | echo -a $hget(t,digit) } }
$iif($hget(t,state) = -t,Remise a l'heure)
.Heure : {
:start1
var %h = $$?="entrez une heure s'il vous plus entre 0 et 12"
if (%h > 12) { goto start1 }
else { hadd -m t m %h }
}
.Minute : {
:start2
var %m = $$?="entrez un nombre de minute s'il vous plait entre 0 et 59"
if (%m > 59 ) { goto start2 }
else { hadd -m t m %m }
}
.Seconde : {
:start3
var %s = $$?="entrez un nombre de seconde s'il vous plait entre 0 et 59"
if (%s > 59) { goto start3 }
else { hadd -m t m %s }
}
.Automatique $hget(t,auto)
..$iif($hget(t,auto) = on,desactivée,activée) : if ( $hget(t,auto) = on ) { hadd -m t auto off } | else { hadd -m t auto on }
}
Conclusion
Ce n'est pas réellement un addon, des modules peuven etre ajouter, comme la mise a l'heure en prenant l'heure d'une horloge atomique ( en socket ) ou alors l'utilisation du fomat gmt etc etc
J'ai un enorme problème avec le compte a rebours, je n'arrive pas a éffacéles aiguilles des minutes, c'est assez problématique... :(
je devrais pouvoir regler ça un jour ou l'autre.
Aussi note importante. J'ai mis peu de module parce que la précision de l'horloge diminue avec la longueur de l'alias lancé par le timer. d'ou les sauts de label qui "racoursisseent" le code sans passer par des if trop long.
Donc si vous voulez rajouter des modules a l'horloge prenez garde a ceci.
Update 1: Dragoon1 m'a fait remarquer la présence de certains bugs. Ils ont été corrigés.
Upadte 2: Suite aux remarques de PaDa correction des bugs rencontrés.
Sources du même auteur
Sources de la même categorie
Commentaires et avis
Discussions en rapport avec ce code source dans le forum
pour chrono sur les away [ par FyLiPuSsE ]
bonjour je vrourai savoir comment fais t on un chrono sur les away :-)
L'horloge de mIRC [ par Arnaout ]
Je voudrais savoir comment on desactive tout simplement l'horloge de mIRC ( une commande ? ).A +
Dégradé [ par Bloock ]
Bon voila, je vais faire un lecteur mp3 en picwin, et j'aimerai savoir comment on fait [/b]un dégradé dans une fenêtre Picwin[/b]! Merci d'avance <img
icone dans un bouton et chrono [ par Le_Corse ]
Salut tlm,Je vousdrais savoir comment on fait pour mettre une icone dans un bouton ce n'est très dur à trouver pour un confirmé mais pour un débutant
Aide Socket & picwin [ par _VeSpArO_ ]
Salut tout le monde je voulai savoir comment stocker un fichier txt d'un site dans un fichier .txt ou autre dans mon mirc.CAD: telecharger par exemple
Comment avoir un chrono comme sur les quizz ... [ par Panther007 ]
J'aimerais savoir comment faire pour que quand quelqu'un est une bonne réponse sa lui dise : Bravo $nick , tu à répondu en ... secondes et tu gagne ..
Picwin je pense lol jsuis meme pas sur du nom :s [ par Panther007 ]
Salut :) Bon je vous dit en quoi j'aimerais me faire aider , j'aimerais me fabriquer un jeu de Ping pong mais avant il faut que je sache comment utili
Dialog + Picwin [ par DiGhan ]
Bonjour,Voilà , j'ai plusieurs dialog, dans lequel je voudrais inclure des picwin.J'aimerais savoir comment faire pour bouger le dialog quand la title
quelques question [ par KiNdErMaXi ]
voila, j'ai quelques questions a vous poser:*1) est-il possible de faire apparaitre un petit truc. Je m'explique, pointez de la souris la croix en hau
tutorial picwin [ par KiNdErMaXi ]
alors voila j'ai fais un petit tutorial sur les picwin, mais comme on ne peut pas laisser de commentaire et puis qu'il est enfouis dans le fond du sit
|
Derniers Blogs
[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA[MIX10] KEYNOTE DEUXIèME JOURNéE - INTERNET EXPLORER 9, HTML5, VISUAL STUDIO 2010, ODATA par cyril
Le deuxième keynote du mix fut très riche en contenu. Internet Explorer 9 Juste un après le lancement de Internet Explorer 8, Microsoft a dévoilé les nouveautés de Internet Explorer 9. Désormais, IE supportera HTML5, SVG et CSS3. L'élément ...
Cliquez pour lire la suite de l'article par cyril CERTIFICATIONS BETA .NET 4CERTIFICATIONS BETA .NET 4 par KooKiz
Les inscriptions pour les certifications beta .NET 4 ont commencé. L'inscription est offerte pour les examens suivants : - 71-511, TS: Windows Applications Development with Microsoft .NET Framework 4 - 71-515, TS: Web Applications Development with...
Cliquez pour lire la suite de l'article par KooKiz [MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2[MIX 2010] - MICROSOFT TRANSLATOR TECHNOLOGY PREVIEW V2 par redo
J'imagine que la plupart d'entre vous connaissent bien et utilisent le service de traduction de Google, mais connaissez-vous celui de Microsoft . Microsoft Translator ? Effectivement, Microsoft nous annoncé le lancement version 2 de la Technologie Preview...
Cliquez pour lire la suite de l'article par redo LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010!LANCEMENT EN PREVIEW DE CYCLONE LORS DES TECHDAYS 2010! par MPOWARE
Toutes les vidéos de ce lancement sont en ligne!
Partie I - Intro
http://www.youtube.com/watch?v=LkQzTQ8T6CA
Partie II - Démo 1
http://www.youtube.com/watch?v=drAhYQ7lqvo
Partie III - Démo 2
http://www.youtube.com/watch?v=c8KM_1Gqybc...
Cliquez pour lire la suite de l'article par MPOWARE
Logiciels
Academy System (10.9.4.0)ACADEMY SYSTEM (10.9.4.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Xilisoft Convertisseur Vidéo Ultimate (5.1.39.0305)XILISOFT CONVERTISSEUR VIDéO ULTIMATE (5.1.39.0305)Xilisoft Convertisseur Vidéo Ultimate est un outil puissant de conversion vidéo, facile à utilise... Cliquez pour télécharger Xilisoft Convertisseur Vidéo Ultimate Xilisoft DVD Ripper Ultimate (5.0.64.0304)XILISOFT DVD RIPPER ULTIMATE (5.0.64.0304)Xilisoft DVD Ripper Ultimate est un logiciel excellent pour copier et convertir DVD vers presque ... Cliquez pour télécharger Xilisoft DVD Ripper Ultimate Rigs of Rods (63.3)RIGS OF RODS (63.3)c'est un jeu de multi-simulation camions,autobus voitures, avions, bateaux, hélicoptère avec défo... Cliquez pour télécharger Rigs of Rods
Comparez les prix

HTC Magic
Entre 429€ et 429€
|