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 2010 : PLEINIèRE DERNIER JOURTECHDAYS PARIS 2010 : PLEINIèRE DERNIER JOUR par ROMELARD Fabrice
Cette session est la dernière pleinière de ces 3 jours de TechDays Paris 2010. Généralement, cette troisième journée est plus axée sur l'avenir vu par Microsoft. Après un retour sur l'avenir vu par la Science Fiction ou par ...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice UNE JOLIE-HORLOGE ET PAS QU'UN PEU !UNE JOLIE-HORLOGE ET PAS QU'UN PEU ! par neodante
Pour les possesseurs d'iPhone, ça y est Bijin Tokei - qui se traduit littéralement en Français par " Jolie Horloge " - est arrivé et GRATUITEMENT s'il vous plaît ! Après la version Tokyo, Hokkaido, night club, racing, Gal, "pour les mademoiselles'", . voi...
Cliquez pour lire la suite de l'article par neodante TECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICESTECHDAYS PARIS 2010 : CONNECTEZ VOS DONNéES à SHAREPOINT 2010 AVEC LES BUSINESS CONNECTIVITY SERVICES par ROMELARD Fabrice
Animé par: Gaetan Bouveret et Julien Chomarat Business Connectivity Services (BCS) est dans SharePoint 2010 la version 2 de Business Data Catalog (BDC dans SharePoint 2007). Il s'agit de la solution permettant de visualiser des données provenan...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice [DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE[DIVERS] SUIVRE VOS SéRIES PRéFéRéS SUR LA TOILE par orion
Comme de nombreux geek, je suis un grand amateur de série TV et je rate régulièrement des épisodes de mes séries préférés. Une solution s'offre à vous avec ce merveilleux site : Tv Gorge - www.tvgorge.com Moteur de recherche à l'appui, vous pouvez ...
Cliquez pour lire la suite de l'article par orion TECHDAYS PARIS 2010 : LA BI DANS SHAREPOINT 2010TECHDAYS PARIS 2010 : LA BI DANS SHAREPOINT 2010 par ROMELARD Fabrice
Animé par: Vincent Bellet et Baptiste Giraudier La BI dans SharePoint 2010, Les nouveaux services d'application dans SP2010 et SQL Server Reporting services 2008 R2. La BI dans SharePoint est généralisée pour tous afin de permettre à tous les coll...
Cliquez pour lire la suite de l'article par ROMELARD Fabrice
Forum
RE : ON RAWMODERE : ON RAWMODE par WorldDMT
Cliquez pour lire la suite par WorldDMT AVERTISSMENT ET KIKKAVERTISSMENT ET KIKK par mouhcine951990
Cliquez pour lire la suite par mouhcine951990
Logiciels
DB-MAIN (9.1.0)DB-MAIN (9.1.0)DB-MAIN is a data-modeling and data-architecture tool. It is designed to help developers and anal... Cliquez pour télécharger DB-MAIN Xilisoft DPG Convertisseur (5.1.37.0120)XILISOFT DPG CONVERTISSEUR (5.1.37.0120)Xilisoft DPG Convertisseur offre aux fans de Nintendo DS une bonne solution leur permettant de dé... Cliquez pour télécharger Xilisoft DPG Convertisseur GraphicsGale (2.01.01)GRAPHICSGALE (2.01.01)GraphicsGale est un logiciel de PixelArt avec de nombreuse fonctionnalités permettant de réalisé ... Cliquez pour télécharger GraphicsGale Architecte 3D (Platinum 2010)ARCHITECTE 3D (PLATINUM 2010)Architecte 3D Platinium vous permet de concevoir facilement les plans votre future maison, de l'é... Cliquez pour télécharger Architecte 3D TeamViewer 5 (TeamViewer 5)TEAMVIEWER 5 (TEAMVIEWER 5)Dépanner un ami,expliquer une manipulation devient un jeu d'enfant.
Prise en main d'un autre ord... Cliquez pour télécharger TeamViewer 5
|