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
TECHDAYS PARIS 2012 : SYSTEM CENTER SERVICE MANAGER 2012 VUE D'ENSEMBLETECHDAYS PARIS 2012 : SYSTEM CENTER SERVICE MANAGER 2012 VUE D'ENSEMBLE par ROMELARD Fabrice
Speakers: Julien Marechal, Gautier Confiant, Sébastien MEYER La session débute par le positionnement de la solution System Center par rapport aux concepts d'organisation ITIL. Le portail du catalogue de se...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : PLEINIèRE SECOND JOURTECHDAYS PARIS 2012 : PLEINIèRE SECOND JOUR par ROMELARD Fabrice
Après une première journée dédiée aux développeurs, cette seconde journée est dédiée au monde des entreprises et de ses applications. Ainsi, cette pleinière est dédiée à faire un 360 de l'évolution des applications Business aux demandes ac...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : RETOUR D'EXPéRIENCE SUR LA MISE EN PLACE D'UN CLOUD PRIVéTECHDAYS PARIS 2012 : RETOUR D'EXPéRIENCE SUR LA MISE EN PLACE D'UN CLOUD PRIVé par ROMELARD Fabrice
Speaker : Guillaume Rochette Cette session est dédiée à fournir le retour sur la mise en place d'un cloud privé (IaaS) par Osiatis pour son compte ou celui de ses clients. Ce projet s'est déroulé sur 4 mois et a permis de faire évoluer...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice TECHDAYS PARIS 2012 : COMMENT SHAREPOINT A SAUVé MES TECHDAYSTECHDAYS PARIS 2012 : COMMENT SHAREPOINT A SAUVé MES TECHDAYS par ROMELARD Fabrice
Speakers : Lionel Limozin et Alain Marty La session commence par une découverte de SharePoint à travers la mise en place d'un environnement SharePoint pour la gestion des Sessions animées par BeWise. Le besoin est très ba...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice PERSPECTIVE 3.0 POUR SILVERLIGHT 5.0PERSPECTIVE 3.0 POUR SILVERLIGHT 5.0 par odewit
Je viens de publier la version 3.0 de Perspective pour Silverlight, qui regroupe un portage sous Silverlight 5.0 des fonctionnalités de Perspective 2.0, le framework 3D de haut-niveau introduit récemment et de nouveaux exemples de code. En voici la li...
Cliquez pour lire la suite de l'article par odewit
Forum
RE : AIDERE : AIDE par Nico26000
Cliquez pour lire la suite par Nico26000 RE : AIDERE : AIDE par WorldDMT
Cliquez pour lire la suite par WorldDMT AIDEAIDE par Nico26000
Cliquez pour lire la suite par Nico26000
Logiciels
Academy System (17.2.1.0)ACADEMY SYSTEM (17.2.1.0)Logiciel de gestion des établissements.
- élèves/étudiants (inscription, dossier, absence...)
-... Cliquez pour télécharger Academy System Easy-Planning (1.0.0.1)EASY-PLANNING (1.0.0.1)Basé sur les mêmes principes que MyPlanning, Easy-Planning permet de créer des plannings sous la ... Cliquez pour télécharger Easy-Planning COLLECTOR PLUS (3.00B)COLLECTOR PLUS (3.00B)COLLECTOR PLUS version 3.00B est un logiciel utilisant une base de données alimentée par :
- L... Cliquez pour télécharger COLLECTOR PLUS PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO (V7.4)PONAMEDIA TV DEVIENS HELLLOOO FLASH
LA TV SUR VOTRE ORDINATEUR.
Toute une plateforme Multi... Cliquez pour télécharger PONAMEDIA PREMIUM - HELLLOOO FLASH DEMO LettresFaciles 2011 (8.0.0.1)LETTRESFACILES 2011 (8.0.0.1)LettresFaciles est un logiciel facilitant la création et la rédaction de lettres types.
Son inte... Cliquez pour télécharger LettresFaciles 2011
|