Précédent   Forum des professionnels en informatique > Webmasters - Développement Web > JavaScript
JavaScript Forum programmation JavaScript. Lire : Cours JavaScript, FAQ JavaScript, Toutes les FAQ JavaScript et Sources JavaScript
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 16/06/2011, 09h27   #1
Invité de passage
 
Inscription : novembre 2008
Messages : 17
Détails du profil
Informations forums :
Inscription : novembre 2008
Messages : 17
Points : 0
Points : 0
Par défaut Tracé de lignes entre Chrome et IE

Bonjour, un problème simple à décrire :

Code :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
 
 
<DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<title>Console Darwin</title>
 
 
<script>
 
 
function drawLine(x1,y1,x2,y2,color,espacementPointille,divId)
{
	if(espacementPointille<1) { espacementPointille=1; }
 
	//on calcule la longueur du segment
	var lg=Math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
 
	//on determine maintenant le nombre de points necessaires
	var nbPointCentraux=Math.ceil(lg/espacementPointille)-1;
 
	//stepX, stepY (distance entre deux points de pointillés);
	var stepX=(x2-x1)/(nbPointCentraux+0);
	var stepY=(y2-y1)/(nbPointCentraux+0);
 
	//on recreer un point apres l'autre
	var strNewPoints='';
	for(var i=1 ; i<nbPointCentraux ; i++)
	{
		strNewPoints+='<div style="font-size:1px; width:1px; height:1px; background-color:'+color+'; position:absolute; top:'+Math.round(y1+i*stepY)+'px; left:'+Math.round(x1+i*stepX)+'px; ">&nbsp;</div>';
	}
 
	//pointe de depart
	strNewPoints+='<div style="font-size:1px; width:3px; height:3px; background-color:'+color+'; position:absolute; top:'+(y1-1)+'px; left:'+(x1-1)+'px; ">&nbsp;</div>';
	//point d'arrive
	strNewPoints+='<div style="font-size:1px; width:3px; height:3px; background-color:'+color+'; position:absolute; top:'+(y2-1)+'px; left:'+(x2-1)+'px; ">&nbsp;</div>';
 
 
	//on suprimme tous les points actuels et on mets les nouveaux div en place
	//obj container des points
	var myContainer=document.getElementById(divId);
	myContainer.innerHTML=strNewPoints;
}
 
function lignes(){
 
//horizontale sous nettoyage
drawLine(1610,138,3,138,'brown',1,'myDiv');
//verticale toute à gauche
drawLine(3,825,3,138,'brown',1,'myDiv2');
//verticale sous nettoyage
drawLine(530,123,530,138,'brown',1,'myDiv3');
//petites horizontales colonne de gauche
drawLine(4,162,9,162,'brown',1,'myDiv4');
drawLine(4,192,9,192,'brown',1,'myDiv5');
drawLine(4,222,9,222,'brown',1,'myDiv6');
drawLine(4,252,9,252,'brown',1,'myDiv7');
drawLine(4,282,9,282,'brown',1,'myDiv8');
drawLine(4,312,9,312,'brown',1,'myDiv9');
drawLine(4,342,9,342,'brown',1,'myDiv10');
drawLine(4,372,9,372,'brown',1,'myDiv11');
drawLine(4,402,9,402,'brown',1,'myDiv12');
drawLine(4,432,9,432,'brown',1,'myDiv13');
drawLine(4,462,9,462,'brown',1,'myDiv14');
drawLine(4,492,9,492,'brown',1,'myDiv15');
drawLine(4,522,9,522,'brown',1,'myDiv16');
drawLine(4,552,9,552,'brown',1,'myDiv17');
drawLine(4,582,9,582,'brown',1,'myDiv18');
drawLine(4,612,9,612,'brown',1,'myDiv19');
drawLine(4,642,9,642,'brown',1,'myDiv20');
drawLine(4,672,9,672,'brown',1,'myDiv21');
drawLine(4,702,9,702,'brown',1,'myDiv22');
drawLine(4,732,9,732,'brown',1,'myDiv23');
drawLine(4,762,9,762,'brown',1,'myDiv24');
drawLine(4,792,9,792,'brown',1,'myDiv25');
drawLine(4,822,9,822,'brown',1,'myDiv26');
//verticale audessus de colonne deux
drawLine(250,200,250,139,'brown',1,'myDiv27');
//2 verticale colonne 4
drawLine(760,200,760,173,'#00aaff',1,'myDiv58');
//3 verticale colonne 4
drawLine(760,300,760,223,'#ffaa99',1,'myDiv59');
//verticale audessus de colonne 3
drawLine(420,200,420,139,'brown',1,'myDiv35');
//verticale audessus de colonne 5
drawLine(760,150,760,139,'brown',1,'myDiv53');
// soldeve -> reapro 
drawLine(930,200,930,173,'grey',1,'myDiv78');
// reapro -> valo 
drawLine(930,238,930,223,'red',1,'myDiv79');
// hori
drawLine(790,238,930,238,'red',1,'myDiv81');
// vert
drawLine(790,300,790,238,'red',1,'myDiv83');
// reapro -> valo 
drawLine(1100,255,1100,223,'red',1,'myDiv80');
// hori
drawLine(805,255,1100,255,'red',1,'myDiv82');
// vert
drawLine(805,300,805,255,'red',1,'myDiv84');
//in oscar -> reapro
drawLine(980,186,1525,186,'blue',1,'myDiv75');
// verticale 
drawLine(1100,200,1100,173,'blue',1,'myDiv76');
// verticale 4
drawLine(1525,513,1525,186,'blue',1,'myDiv90');
// hori 2
drawLine(1539,513,1525,513,'blue',1,'myDiv91');
// vertical2 
drawLine(980,200,980,186,'blue',1,'myDiv77');
// vertical3 
drawLine(1400,200,1400,186,'blue',1,'myDiv85');
//verticale audessus de colonne 6
drawLine(930,150,930,139,'brown',1,'myDiv54');
//verticale audessus de colonne 7
drawLine(1100,150,1100,139,'brown',1,'myDiv55');
//verticale audessus de colonne 9
drawLine(1440,150,1440,139,'brown',1,'myDiv56');
//2 verticale  de colonne 9
drawLine(1440,200,1440,173,'#ddbb00',1,'myDiv86');
//3 verticale  de colonne 9
drawLine(1440,250,1440,223,'#ddbb00',1,'myDiv87');
//4 verticale  de colonne 9
drawLine(1440,300,1440,273,'#ddbb00',1,'myDiv88');
//verticale audessus de colonne 10
drawLine(1610,150,1610,139,'brown',1,'myDiv57');
//2 verticale  de colonne 10
drawLine(1610,200,1610,173,'#ff3311',1,'myDiv92');
//3 verticale  de colonne 10
drawLine(1610,250,1610,223,'#ff3311',1,'myDiv93');
//4 verticale  de colonne 10
drawLine(1610,300,1610,273,'#ff3311',1,'myDiv94');
//5 verticale  de colonne 10
drawLine(1610,350,1610,323,'#ff3311',1,'myDiv95');
//6 verticale  de colonne 10
drawLine(1610,400,1610,373,'#ff3311',1,'myDiv96');
//7 verticale  de colonne 10
drawLine(1610,450,1610,423,'#ff3311',1,'myDiv97');
//8 verticale  de colonne 10
drawLine(1610,500,1610,473,'#ff3311',1,'myDiv98');
//9 verticale  de colonne 10
drawLine(1610,550,1610,523,'#ff3311',1,'myDiv99');
// 2m verticale  de colonne 2
drawLine(250,250,250,223,'#77eeff',1,'myDiv28');
// prlog -> valostock
//horizontale
drawLine(695,242,251,242,'#77eeff',1,'myDiv29');
//verticale
drawLine(695,300,695,242,'#77eeff',1,'myDiv30');
//valostock -> decctk
drawLine(664,312,690,312,'#bb11ff',1,'myDiv61');
// 2m verticale  de colonne 2
drawLine(420,230,420,223,'#00cc55',1,'myDiv31');
// pr -> valostock
//horizontale
drawLine(707,231,266,231,'#00cc55',1,'myDiv32');
//verticale droite
drawLine(707,300,707,231,'#00cc55',1,'myDiv33');
//verticale gauche
drawLine(266,250,266,231,'#00cc55',1,'myDiv34');
//3 m verticale de colonne 2
drawLine(250,300,250,273,'#ffaa44',1,'myDiv36');
//dep tmpach
//horizontale
drawLine(590,286,251,286,'#ffaa44',1,'myDiv37');
//verticale droite
drawLine(590,300,590,286,'#ffaa44',1,'myDiv38');
//verticale gauche
drawLine(420,300,420,286,'#ffaa44',1,'myDiv39');
//4 m verticale de colonne 2
drawLine(250,350,250,323,'black',3,'myDiv40');
//dep oscar
//horizontale
drawLine(590,336,251,336,'black',3,'myDiv41');
//verticale droite
drawLine(590,350,590,336,'black',3,'myDiv42');
//verticale gauche
drawLine(420,350,420,336,'black',3,'myDiv43');
//dep soldeve
//horizontale
drawLine(1270,436,421,436,'#ccff77',1,'myDiv68');
//vert1
drawLine(761,449,761,423,'#ccff77',1,'myDiv69');
//vert2
drawLine(931,449,931,423,'#ccff77',1,'myDiv70');
//vert3
drawLine(1101,449,1101,423,'#ccff77',1,'myDiv71');
//vert4
drawLine(1271,449,1271,423,'#ccff77',1,'myDiv72');
//vert5
drawLine(421,449,421,436,'#ccff77',1,'myDiv73');
//vert6
drawLine(591,449,591,436,'#ccff77',1,'myDiv74');
//dep valostock
//horizontale
drawLine(1270,336,761,336,'#bb11ff',1,'myDiv62');
//vert 1
drawLine(761,349,761,323,'#bb11ff',1,'myDiv63');
//vert 2
drawLine(931,349,931,323,'#bb11ff',1,'myDiv64');
//vert 3
drawLine(1101,349,1101,323,'#bb11ff',1,'myDiv65');
//vert 4
drawLine(1271,349,1271,323,'#bb11ff',1,'myDiv66');
//avrofi -> soldeve
drawLine(761,399,761,373,'black',1,'myDiv67');
//5 m verticale de colonne 2
drawLine(250,400,250,373,'red',3,'myDiv44');
//6 m verticale de colonne 2
drawLine(250,500,250,423,'#77eeff',3,'myDiv45');
// dep oscprx
//horizontale
drawLine(1355,486,251,486,'#77eeff',3,'myDiv48');
//vert1
drawLine(420,500,420,487,'#77eeff',3,'myDiv49');
//vert2
drawLine(590,500,590,487,'#77eeff',3,'myDiv50');
//vert3
drawLine(760,500,760,487,'#77eeff',3,'myDiv51');
//vert4
drawLine(1355,216,1355,486,'#77eeff',3,'myDiv52');
//horizontale2
drawLine(1369,216,1355,216,'#77eeff',3,'myDiv60');
//3 m verticale de colonne 3
drawLine(420,400,420,373,'#77aa00',3,'myDiv46');
//7 m verticale de colonne 2
drawLine(250,550,250,523,'#ffaa44',3,'myDiv47');
//7 m verticale de colonne 2
drawLine(75,860,75,833,'#008899',1,'myDiv89');
}
 
 
 
 
 
</script>
 
 
<style type='text/css'>
 
body { zoom: 80%; }
 
div {
 
    position:   absolute;
    color:      blue;
    text-align: center;
    width:      140px;
    height:     20px;
}
 
span {
    border:     thin black solid;
    position:   absolute;
    text-align: center;
    height:     10px;
}
 
h1 { text-align: center; }
 
.log_inexistante  { background-color: none;     color: black; }
.log_erreur       { background-color: red;      color: black; }
.log_warning      { background-color: #FF8C00;  color: black; }
.log_ok           { background-color: green;    color: white; }
 
.log_inexistante   { color: black; }
.log_erreur      a { color: black; }
.log_warning     a { color: black; }
.log_ok          a { color: white; }
 
#APPRO_MASSE      {border:     thin black solid ;top: 150px; left: 10px;}        /*cat 1*/
#ASSORT_APPRO     {border:     thin black solid ;top: 180px; left: 10px;}  /*cat 1*/
#BALISAGE         {border:     thin black solid ;top: 500px; left: 520px;}
#CALCUL_PR        {border:     thin black solid ;top: 200px; left: 350px;}
#CALCUL_CJM       {border:     thin black solid ;top: 1050px; left: 10px;}   /*a replacer*/
#CALCUL_MAJAPD    {border:     thin black solid ;top: 1050px; left: 160px;}/*a replacer*/
#CONTROLE         {border:     thin black solid ;top: 800px; left: 180px;}
#CTL_VENTE        {border:     thin black solid ;top: 750px; left: 1100px;}
#IN_OSCAR_WEB     {border:     thin black solid ;top: 210px; left: 10px;}    /*cat 1*/
#IN_OSCAR         {border:     thin black solid ;top: 150px; left: 1030px;}
#IN_OSCAR_INV     {border:     thin black solid ;top: 1050px; left: 1375px;}/*a replacer*/
#EDI_INVOICE_IN   {border:     thin black solid ;top: 810px; left: 10px;}    /*cat 1*/
#EDI_INVOICE_OUT  {border:     thin black solid ;top: 860px; left: 10px;}
#UPDATE_FILIERE   {border:     thin black solid ;top: 150px; left: 1060px;}
#IT_CIBLE_AVROFI  {border:     thin black solid ;top: 350px; left: 690px;}
#IT_CIBLE_CAIART  {border:     thin black solid ;top: 350px; left: 350px;}
#IT_CIBLE_CAIPRX  {border:     thin black solid ;top: 500px; left: 180px;}
#IT_CIBLE_CRMART  {border:     thin black solid ;top: 400px; left: 350px;}
#IT_CIBLE_CRMPRX  {border:     thin black solid ;top: 550px; left: 180px;}
#IN_EXPED         {border:     thin black solid ;top: 150px; left: 690px;}
#IN_EXPED_WEB     {border:     thin black solid ;top: 200px; left: 690px;}
#IT_CIBLE_CDDACH  {border:     thin black solid ;top: 400px; left: 860px;}
#IT_CIBLE_CDEACH  {border:     thin black solid ;top: 450px; left: 350px;}
#IT_CIBLE_CRIART  {border:     thin black solid ;top: 240px; left: 10px;}   /*cat 1*/
#IT_CIBLE_DECART  {border:     thin black solid ;top: 350px; left: 520px;}
#IT_CIBLE_DECART2 {border:     thin black solid ;top: 270px; left: 10px;}    /*cat 1*/
#IT_CIBLE_DECAVR  {border:     thin black solid ;top: 450px; left: 690px;}
#IT_CIBLE_DECCAT  {border:     thin black solid ;top: 300px; left: 10px;}  /*cat 1*/
#STRMCH 	      {border:     thin black solid ;top: 750px; left: 10px;}
#IT_CIBLE_DECCTK  {border:     thin black solid ;top: 300px; left: 520px;}
#IT_CIBLE_DECFOU  {border:     thin black solid ;top: 330px; left: 10px;}    /*cat 1*/
#IT_CIBLE_DECKIT  {border:     thin black solid ;top: 360px; left: 10px;}   /*cat 1*/
#IT_CIBLE_DECMAG  {border:     thin black solid ;top: 390px; left: 10px;}    /*cat 1*/
#IT_CIBLE_DECMTK  {border:     thin black solid ;top: 350px; left: 860px;}
#IT_CIBLE_DECPAR  {border:     thin black solid ;top: 300px; left: 350px;}
#IT_CIBLE_DECPVE  {border:     thin black solid ;top: 500px; left: 350px;}
#IT_CIBLE_DECREC  {border:     thin black solid ;top: 450px; left: 1030px;}
#IT_CIBLE_DECRTR  {border:     thin black solid ;top: 450px; left: 520px;}   
#IT_CIBLE_DECSTK  {border:     thin black solid ;top: 300px; left: 1030px;}
#IT_CIBLE_DECSTR  {border:     thin black solid ;top: 420px; left: 10px;}    /*cat 1*/
#IT_CIBLE_DECVTE  {border:     thin black solid ;top: 350px; left: 1030px;}
#IT_CIBLE_FRANCO  {border:     thin black solid ;top: 780px; left: 10px;}
#IT_CIBLE_LSTART  {border:     thin black solid ;top: 450px; left: 10px;}  /*cat 1*/
#IT_CIBLE_OSCART  {border:     thin black solid ;top: 300px; left: 180px;}
#IT_CIBLE_OSCPRX  {border:     thin black solid ;top: 400px; left: 180px;}
#IT_CIBLE_PLXACH  {border:     thin black solid ;top: 400px; left: 1030px;}
#IT_CIBLE_PRXCAI  {border:     thin black solid ;top: 350px; left: 180px;}
#IT_CIBLE_RECOFI  {border:     thin black solid ;top: 300px; left: 860px;}
#IT_CIBLE_STMFAM  {border:     thin black solid ;top: 480px; left: 10px;}  /*cat 1*/
#IT_CIBLE_STMGRP  {border:     thin black solid ;top: 510px; left: 10px;}   /*cat 1 1*/
#IT_CIBLE_STMSFA  {border:     thin black solid ;top: 540px; left: 10px;}  /*cat 1*/
#IT_CIBLE_TRFEXP  {border:     thin black solid ;top: 400px; left: 1200px;}
#IT_CIBLE_TRFREC  {border:     thin black solid ;top: 450px; left: 1200px;}
#IT_CIBLE_VALOFI  {border:     thin black solid ;top: 1050px; left: 1375px;}/*a replacer*/
#IT_CIBLE_WEBART  {border:     thin black solid ;top: 500px; left: 690px;}
#IT_CIBLE_WEBSTK  {border:     thin black solid ;top: 450px; left: 860px;}
#IT_TMP_ACH       {border:     thin black solid ;top: 250px; left: 180px;}
#NETTOYAGE        {border:     thin black solid ;top: 100px; left: 460px;}
#PURGE            {border:     thin black solid ;top: 750px; left: 180px;}
#PURGE_GNX        {border:     thin black solid ;top: 570px; left: 10px;}    /*cat 1*/
#REAPPRO_ENTRP    {border:     thin black solid ;top: 200px; left: 1030px;}
#REAPPRO_FOURN    {border:     thin black solid ;top: 200px; left: 860px;}
#REGULC04         {border:     thin black solid ;top: 600px; left: 10px;}     /*cat 1*/
#RENVOI_CMD       {border:     thin black solid ;top: 1050px; left: 1375px;}/*a replacer*/
#STAT_VENTE       {border:     thin black solid ;top: 300px; left: 1200px;}
#STAT_VENTE_PRE   {border:     thin black solid ;top: 350px; left: 1200px;}
#SOLDE_EVE        {border:     thin black solid ;top: 400px; left: 690px;}
#SOLDE_EVE1       {border:     thin black solid ;top: 150px; left: 860px;}
#SUIVI_TAILLE_TABLES {border:     thin black solid ;top: 3500px; left: 160px;}
#VALO_STOCK       {border:     thin black solid ;top: 300px; left: 690px;}  
#IT_CIBLE_DECRPL  {border:     thin black solid ;top: 630px; left: 10px;}    /*cat 1*/
#RPCRPE           {border:     thin black solid ;top: 660px; left: 10px;}    /*cat 1*/
#MOB_PARAM        {border:     thin black solid ;top: 690px; left: 10px;}   /*cat 1*/
#MOB_RPRO         {border:     thin black solid ;top: 150px; left: 1370px;}
#MOB_MPRO         {border:     thin black solid ;top: 200px; left: 1370px;}
#MOB_MCDE         {border:     thin black solid ;top: 250px; left: 1370px;}
#MOB_MREC         {border:     thin black solid ;top: 300px; left: 1370px;}  
#IT_CIBLE_VARLOG  {border:     thin black solid ;top: 720px; left: 10px;}  /*cat 1*/
#LOG_STK_GET      {border:     thin black solid ;top: 150px; left: 1540px;}
#LOG_STK          {border:     thin black solid ;top: 200px; left: 1540px;}
#LOG_ART_OUT      {border:     thin black solid ;top: 250px; left: 1540px;}     /*cat 1*/
#LOG_MCRR_GET     {border:     thin black solid ;top: 300px; left: 1540px;}
#LOG_MCRR         {border:     thin black solid ;top: 350px; left: 1540px;}
#LOG_EXE_GET_IN   {border:     thin black solid ;top: 400px; left: 1540px;}
#LOG_EXE_IN       {border:     thin black solid ;top: 450px; left: 1540px;}
#REAPPRO_GOAL     {border:     thin black solid ;top: 500px; left: 1540px;}
#LOG_PRE_OUT      {border:     thin black solid ;top: 550px; left: 1540px;}
#CALCUL_PR_LOG    {border:     thin black solid ;top: 200px; left: 180px;}
</style>
</head>
<body  onload="setTimeout('lignes();',10);">
<div id="myDiv" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv2" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv3" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv4" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv5" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv6" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv7" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv8" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv9" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv10" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv11" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv12" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv13" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv14" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv15" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv16" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv17" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv18" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv19" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv20" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv21" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv22" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv23" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv24" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv25" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv26" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv27" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv28" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv29" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv30" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv31" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv32" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv33" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv34" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv35" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv36" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv37" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv38" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv39" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv40" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv41" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv42" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv43" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv44" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv45" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv46" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv47" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv48" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv49" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv50" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv51" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv52" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv53" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv54" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv55" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv56" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv57" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv58" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv59" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv60" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv61" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv62" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv63" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv64" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv65" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv66" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv67" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv68" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv69" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv70" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv71" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv72" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv73" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv74" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv75" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv76" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv77" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv78" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv79" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv80" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv81" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv82" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv83" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv84" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv85" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv86" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv87" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv88" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv89" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv90" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv91" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv92" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv93" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv94" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv95" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv96" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv97" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv98" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
<div id="myDiv99" style="position:absolute; width: 0px; height: 0px; left: 0px; top: 0px; border: none  ;"></div>
 
 
 
<h1>Console Darwin du 14/  
06/ 
2011 - Environnement 
de recette  
</h1> 
<i>Generation de la console le 14/06/2011 a 14:22:10,40 </i> 
<div id='ASSORT_APPRO' class='log_inexistante' >ASSORT_APPRO</div>   
<div id='APPRO_MASSE' class='log_inexistante' >APPRO_MASSE</div>   
<div id='BALISAGE' class='log_inexistante' >BALISAGE</div>   
<div id='CALCUL_PR' class='log_inexistante' >CALCUL_PR</div>   
<div id='CALCUL_CJM' class='log_inexistante' >CALCUL_CJM</div>   
<div id='CALCUL_MAJAPD' class='log_inexistante' >CALCUL_MAJAPD</div>   
<div id='CONTROLE' class='log_inexistante' >CONTROLE</div>  
<div id='IN_OSCAR' class='log_inexistante' >IN_OSCAR</div>   
<div id='IN_OSCAR_WEB' class='log_inexistante' >IN_OSCAR_WEB</div>   
<div id='IN_OSCAR_INV' class='log_inexistante' >IN_OSCAR_INV</div>   
<div id='IN_EXPED' class='log_inexistante' >IN_EXPED</div>   
<div id='IN_EXPED_WEB' class='log_inexistante' >IN_EXPED_WEB</div>   
<div id='EDI_INVOICE_IN' class='log_inexistante' >EDI_INVOICE_IN</div>   
<div id='EDI_INVOICE_OUT' class='log_inexistante' >EDI_INVOICE_OUT</div>   
<div id='IT_CIBLE_AVROFI' class='log_inexistante' >IT_CIBLE_AVROFI</div>   
<div id='IT_CIBLE_CAIART' class='log_inexistante' >IT_CIBLE_CAIART</div>   
<div id='IT_CIBLE_CAIPRX' class='log_inexistante' >IT_CIBLE_CAIPRX</div>   
<div id='IT_CIBLE_CRMART' class='log_inexistante' >IT_CIBLE_CRMART</div>   
<div id='IT_CIBLE_CRMPRX' class='log_inexistante' >IT_CIBLE_CRMPRX</div>   
<div id='IT_CIBLE_CDDACH' class='log_inexistante' >IT_CIBLE_CDDACH</div>   
<div id='IT_CIBLE_CDEACH' class='log_inexistante' >IT_CIBLE_CDEACH</div>   
<div id='IT_CIBLE_CRIART' class='log_inexistante' >IT_CIBLE_CRIART</div>   
<div id='IT_CIBLE_DECART' class='log_inexistante' >IT_CIBLE_DECART</div>   
<div id='IT_CIBLE_DECART2' class='log_inexistante' >IT_CIBLE_DECART2</div>   
<div id='IT_CIBLE_DECAVR' class='log_inexistante' >IT_CIBLE_DECAVR</div>   
<div id='IT_CIBLE_DECCAT' class='log_inexistante' >IT_CIBLE_DECCAT</div>   
<div id='IT_CIBLE_DECCTK' class='log_inexistante' >IT_CIBLE_DECCTK</div>   
<div id='IT_CIBLE_DECFOU' class='log_inexistante' >IT_CIBLE_DECFOU</div>   
<div id='IT_CIBLE_DECKIT' class='log_inexistante' >IT_CIBLE_DECKIT</div>   
<div id='IT_CIBLE_DECMAG' class='log_inexistante' >IT_CIBLE_DECMAG</div>   
<div id='IT_CIBLE_DECMTK' class='log_inexistante' >IT_CIBLE_DECMTK</div>   
<div id='IT_CIBLE_DECPAR' class='log_inexistante' >IT_CIBLE_DECPAR</div>   
<div id='IT_CIBLE_DECPVE' class='log_inexistante' >IT_CIBLE_DECPVE</div>   
<div id='IT_CIBLE_DECREC' class='log_inexistante' >IT_CIBLE_DECREC</div>   
<div id='IT_CIBLE_DECRTR' class='log_inexistante' >IT_CIBLE_DECRTR</div>   
<div id='IT_CIBLE_DECSTK' class='log_inexistante' >IT_CIBLE_DECSTK</div>   
<div id='IT_CIBLE_DECSTR' class='log_inexistante' >IT_CIBLE_DECSTR</div>   
<div id='IT_CIBLE_DECVTE' class='log_inexistante' >IT_CIBLE_DECVTE</div>   
<div id='IT_CIBLE_FRANCO' class='log_inexistante' >IT_CIBLE_FRANCO</div>   
<div id='IT_CIBLE_LSTART' class='log_inexistante' >IT_CIBLE_LSTART</div>   
<div id='IT_CIBLE_OSCART' class='log_inexistante' >IT_CIBLE_OSCART</div>   
<div id='IT_CIBLE_OSCPRX' class='log_inexistante' >IT_CIBLE_OSCPRX</div>   
<div id='IT_CIBLE_PLXACH' class='log_inexistante' >IT_CIBLE_PLXACH</div>   
<div id='IT_CIBLE_PRXCAI' class='log_inexistante' >IT_CIBLE_PRXCAI</div>   
<div id='IT_CIBLE_RECOFI' class='log_inexistante' >IT_CIBLE_RECOFI</div>   
<div id='IT_CIBLE_STMFAM' class='log_inexistante' >IT_CIBLE_STMFAM</div>   
<div id='IT_CIBLE_STMGRP' class='log_inexistante' >IT_CIBLE_STMGRP</div>   
<div id='IT_CIBLE_STMSFA' class='log_inexistante' >IT_CIBLE_STMSFA</div>   
<div id='IT_CIBLE_TRFEXP' class='log_inexistante' >IT_CIBLE_TRFEXP</div>   
<div id='IT_CIBLE_TRFREC' class='log_inexistante' >IT_CIBLE_TRFREC</div>   
<div id='IT_CIBLE_VALOFI' class='log_inexistante' >IT_CIBLE_VALOFI</div>   
<div id='IT_CIBLE_WEBART' class='log_inexistante' >IT_CIBLE_WEBART</div>   
<div id='IT_CIBLE_WEBSTK' class='log_inexistante' >IT_CIBLE_WEBSTK</div>   
<div id='IT_TMP_ACH' class='log_inexistante' >IT_TMP_ACH</div>   
<div id='NETTOYAGE' class='log_inexistante' >NETTOYAGE</div>   
<div id='PURGE' class='log_inexistante' >PURGE</div>   
<div id='PURGE_GNX' class='log_inexistante' >PURGE_GNX</div>   
<div id='REAPPRO_ENTRP' class='log_inexistante' >REAPPRO_ENTRP</div>   
<div id='REAPPRO_FOURN' class='log_inexistante' >REAPPRO_FOURN</div>   
<div id='REGULC04' class='log_inexistante' >REGULC04</div>   
<div id='RENVOI_CMD' class='log_inexistante' >RENVOI_CMD</div>   
<div id='SOLDE_EVE' class='log_inexistante' >SOLDE_EVE</div>   
<div id='SOLDE_EVE1' class='log_inexistante' >SOLDE_EVE1</div>   
<div id='STAT_VENTE' class='log_inexistante' >STAT_VENTE</div>   
<div id='STAT_VENTE_PRE' class='log_inexistante' >STAT_VENTE_PRE</div>   
<div id='VALO_STOCK' class='log_inexistante' >VALO_STOCK</div>   
<div id='IT_CIBLE_DECRPL' class='log_inexistante' >IT_CIBLE_DECRPL</div>   
<div id='RPCRPE' class='log_inexistante' >RPCRPE</div>   
<div id='MOB_PARAM' class='log_inexistante' >MOB_PARAM</div>   
<div id='MOB_MCDE' class='log_inexistante' >MOB_MCDE</div>   
<div id='MOB_RPRO' class='log_inexistante' >MOB_RPRO</div>   
<div id='MOB_MPRO' class='log_inexistante' >MOB_MPRO</div>   
<div id='MOB_MREC' class='log_inexistante' >MOB_MREC</div>   
<div id='STRMCH' class='log_inexistante' >STRMCH</div>   
<div id='IT_CIBLE_VARLOG' class='log_inexistante' >IT_CIBLE_VARLOG</div>   
<div id='LOG_ART_OUT' class='log_inexistante' >LOG_ART_OUT</div>   
<div id='LOG_STK' class='log_inexistante' >LOG_STK</div>   
<div id='LOG_STK_GET' class='log_inexistante' >LOG_STK_GET</div>   
<div id='LOG_MCRR_GET' class='log_inexistante' >LOG_MCRR_GET</div>   
<div id='LOG_MCRR' class='log_warning' title='[DUREE] Debut : 20110614 125214  - Fin : 20110614 125223  - Duree totale : 00:00:09 - Duree Trt : 00:00:09   - [WARNING] Presence de rejets dans l interface {numitg = 7301} ' ><a href='GEN125-LOG_MCRR_9999.log'>LOG_MCRR</a></div>       
<div id='LOG_EXE_GET_IN' class='log_inexistante' >LOG_EXE_GET_IN</div>   
<div id='LOG_EXE_IN' class='log_inexistante' >LOG_EXE_IN</div>   
<div id='REAPPRO_GOAL' class='log_inexistante' >REAPPRO_GOAL</div>   
<div id='LOG_PRE_OUT' class='log_inexistante' >LOG_PRE_OUT</div>   
<div id='CALCUL_PR_LOG' class='log_inexistante' >CALCUL_PR_LOG</div>   
<span style='left: 200px; width: 190px; top: 925px; background-color: white'>Att. lancement</span>    
<span style='left: 400px; width: 190px; top: 925px; background-color: red'>Att. flag</span>    
<span style='left: 600px; width: 190px; top: 925px; background-color: yellow'>Att. jeton</span>    
<span style='left: 800px; width: 190px; top: 925px; background-color: green'>Traitement</span>    
<span style='left: 1px; width= 190px; top: 975px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1295px; top: 975px; background-color: white'></span>    
<span style='left: -1095px; width: 0px; top: 975px; background-color: red'></span>    
<span style='left: -1095px; width: 0px; top: 975px; background-color: yellow'></span>    
<span style='left: -1095px; width: 0px; top: 975px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1000px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1283px; top: 1000px; background-color: white'></span>    
<span style='left: -1083px; width: 0px; top: 1000px; background-color: red'></span>    
<span style='left: -1083px; width: 0px; top: 1000px; background-color: yellow'></span>    
<span style='left: -1083px; width: 0px; top: 1000px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1025px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1271px; top: 1025px; background-color: white'></span>    
<span style='left: -1071px; width: 0px; top: 1025px; background-color: red'></span>    
<span style='left: -1071px; width: 0px; top: 1025px; background-color: yellow'></span>    
<span style='left: -1071px; width: 0px; top: 1025px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1050px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1256px; top: 1050px; background-color: white'></span>    
<span style='left: -1056px; width: 0px; top: 1050px; background-color: red'></span>    
<span style='left: -1056px; width: 0px; top: 1050px; background-color: yellow'></span>    
<span style='left: -1056px; width: 0px; top: 1050px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1075px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1253px; top: 1075px; background-color: white'></span>    
<span style='left: -1053px; width: 0px; top: 1075px; background-color: red'></span>    
<span style='left: -1053px; width: 0px; top: 1075px; background-color: yellow'></span>    
<span style='left: -1053px; width: 0px; top: 1075px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1100px;'>LOG_MCRR.bat</span>    
<span style='left: 200px; width: -1243px; top: 1100px; background-color: white'></span>    
<span style='left: -1043px; width: 0px; top: 1100px; background-color: red'></span>    
<span style='left: -1043px; width: 0px; top: 1100px; background-color: yellow'></span>    
<span style='left: -1043px; width: 0px; top: 1100px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1125px;'>LOG_MCRR.bat</span>    
<span style='left: 200px; width: -1238px; top: 1125px; background-color: white'></span>    
<span style='left: -1038px; width: 0px; top: 1125px; background-color: red'></span>    
<span style='left: -1038px; width: 0px; top: 1125px; background-color: yellow'></span>    
<span style='left: -1038px; width: 0px; top: 1125px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1150px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1214px; top: 1150px; background-color: white'></span>    
<span style='left: -1014px; width: 0px; top: 1150px; background-color: red'></span>    
<span style='left: -1014px; width: 0px; top: 1150px; background-color: yellow'></span>    
<span style='left: -1014px; width: 0px; top: 1150px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1175px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1206px; top: 1175px; background-color: white'></span>    
<span style='left: -1006px; width: 0px; top: 1175px; background-color: red'></span>    
<span style='left: -1006px; width: 0px; top: 1175px; background-color: yellow'></span>    
<span style='left: -1006px; width: 0px; top: 1175px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1200px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1202px; top: 1200px; background-color: white'></span>    
<span style='left: -1002px; width: 0px; top: 1200px; background-color: red'></span>    
<span style='left: -1002px; width: 0px; top: 1200px; background-color: yellow'></span>    
<span style='left: -1002px; width: 1px; top: 1200px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1225px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1193px; top: 1225px; background-color: white'></span>    
<span style='left: -993px; width: 0px; top: 1225px; background-color: red'></span>    
<span style='left: -993px; width: 0px; top: 1225px; background-color: yellow'></span>    
<span style='left: -993px; width: 0px; top: 1225px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1250px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1191px; top: 1250px; background-color: white'></span>    
<span style='left: -991px; width: 0px; top: 1250px; background-color: red'></span>    
<span style='left: -991px; width: 0px; top: 1250px; background-color: yellow'></span>    
<span style='left: -991px; width: 0px; top: 1250px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1275px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1179px; top: 1275px; background-color: white'></span>    
<span style='left: -979px; width: 0px; top: 1275px; background-color: red'></span>    
<span style='left: -979px; width: 0px; top: 1275px; background-color: yellow'></span>    
<span style='left: -979px; width: 0px; top: 1275px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1300px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1174px; top: 1300px; background-color: white'></span>    
<span style='left: -974px; width: 0px; top: 1300px; background-color: red'></span>    
<span style='left: -974px; width: 0px; top: 1300px; background-color: yellow'></span>    
<span style='left: -974px; width: 0px; top: 1300px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1325px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1169px; top: 1325px; background-color: white'></span>    
<span style='left: -969px; width: 0px; top: 1325px; background-color: red'></span>    
<span style='left: -969px; width: 0px; top: 1325px; background-color: yellow'></span>    
<span style='left: -969px; width: 0px; top: 1325px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1350px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1164px; top: 1350px; background-color: white'></span>    
<span style='left: -964px; width: 0px; top: 1350px; background-color: red'></span>    
<span style='left: -964px; width: 0px; top: 1350px; background-color: yellow'></span>    
<span style='left: -964px; width: 0px; top: 1350px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1375px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -1152px; top: 1375px; background-color: white'></span>    
<span style='left: -952px; width: 0px; top: 1375px; background-color: red'></span>    
<span style='left: -952px; width: 0px; top: 1375px; background-color: yellow'></span>    
<span style='left: -952px; width: 0px; top: 1375px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1400px;'>LOG_MCRR.bat</span>    
<span style='left: 200px; width: -1029px; top: 1400px; background-color: white'></span>    
<span style='left: -829px; width: 0px; top: 1400px; background-color: red'></span>    
<span style='left: -829px; width: 0px; top: 1400px; background-color: yellow'></span>    
<span style='left: -829px; width: 0px; top: 1400px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1425px;'>LOG_MCRR.bat</span>    
<span style='left: 200px; width: -1026px; top: 1425px; background-color: white'></span>    
<span style='left: -826px; width: 0px; top: 1425px; background-color: red'></span>    
<span style='left: -826px; width: 0px; top: 1425px; background-color: yellow'></span>    
<span style='left: -826px; width: 0px; top: 1425px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1450px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -839px; top: 1450px; background-color: white'></span>    
<span style='left: -639px; width: 0px; top: 1450px; background-color: red'></span>    
<span style='left: -639px; width: 0px; top: 1450px; background-color: yellow'></span>    
<span style='left: -639px; width: 0px; top: 1450px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1475px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -838px; top: 1475px; background-color: white'></span>    
<span style='left: -638px; width: 0px; top: 1475px; background-color: red'></span>    
<span style='left: -638px; width: 0px; top: 1475px; background-color: yellow'></span>    
<span style='left: -638px; width: 0px; top: 1475px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1500px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -837px; top: 1500px; background-color: white'></span>    
<span style='left: -637px; width: 0px; top: 1500px; background-color: red'></span>    
<span style='left: -637px; width: 0px; top: 1500px; background-color: yellow'></span>    
<span style='left: -637px; width: 0px; top: 1500px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1525px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -836px; top: 1525px; background-color: white'></span>    
<span style='left: -636px; width: 0px; top: 1525px; background-color: red'></span>    
<span style='left: -636px; width: 0px; top: 1525px; background-color: yellow'></span>    
<span style='left: -636px; width: 0px; top: 1525px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1550px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -833px; top: 1550px; background-color: white'></span>    
<span style='left: -633px; width: 0px; top: 1550px; background-color: red'></span>    
<span style='left: -633px; width: 0px; top: 1550px; background-color: yellow'></span>    
<span style='left: -633px; width: 0px; top: 1550px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1575px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -831px; top: 1575px; background-color: white'></span>    
<span style='left: -631px; width: 0px; top: 1575px; background-color: red'></span>    
<span style='left: -631px; width: 0px; top: 1575px; background-color: yellow'></span>    
<span style='left: -631px; width: 0px; top: 1575px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1600px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -826px; top: 1600px; background-color: white'></span>    
<span style='left: -626px; width: 0px; top: 1600px; background-color: red'></span>    
<span style='left: -626px; width: 0px; top: 1600px; background-color: yellow'></span>    
<span style='left: -626px; width: 0px; top: 1600px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1625px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -824px; top: 1625px; background-color: white'></span>    
<span style='left: -624px; width: 0px; top: 1625px; background-color: red'></span>    
<span style='left: -624px; width: 0px; top: 1625px; background-color: yellow'></span>    
<span style='left: -624px; width: 0px; top: 1625px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1650px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -823px; top: 1650px; background-color: white'></span>    
<span style='left: -623px; width: 0px; top: 1650px; background-color: red'></span>    
<span style='left: -623px; width: 0px; top: 1650px; background-color: yellow'></span>    
<span style='left: -623px; width: 0px; top: 1650px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1675px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -814px; top: 1675px; background-color: white'></span>    
<span style='left: -614px; width: 0px; top: 1675px; background-color: red'></span>    
<span style='left: -614px; width: 0px; top: 1675px; background-color: yellow'></span>    
<span style='left: -614px; width: 0px; top: 1675px; background-color: green'></span>    
<span style='left: 1px; width= 190px; top: 1700px;'>CONTROLE.bat</span>    
<span style='left: 200px; width: -813px; top: 1700px; background-color: white'></span>    
<span style='left: -613px; width: 0px; top: 1700px; background-color: red'></span>    
<span style='left: -613px; width: 0px; top: 1700px; background-color: yellow'></span>    
<span style='left: -613px; width: 0px; top: 1700px; background-color: green'></span>    
<span id='SUIVI_TAILLE_TABLES'> 
<table border='1'> 
<tr><td>Table</td><td>Nb lignes</td><td>J - 1</td><td>J - 2</td><td>J - 3</td><td>J - 4</td><td>S - 1</td><td>M - 1</td><td>Taille</td> 
 
no rows selected
 
</table> 
</span>
Qui je le sais n'est pas fermé en bas (normal pour le moment) me donne un résultat très propre sur chrome, et un tracé absolument immonde sur IE 8. Pourquoi et que puis je y faire ?
nialcen est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 16/06/2011, 09h54   #2
Rédacteur/Modérateur
 
Avatar de SpaceFrog
 
Homme
Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Analyste Programmeur
Inscription : mars 2002
Messages : 30 019
Détails du profil
Informations personnelles :
Sexe : Homme
Localisation : Royaume-Uni

Informations professionnelles :
Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Analyste Programmeur
Secteur : Industrie

Informations forums :
Inscription : mars 2002
Messages : 30 019
Points : 45 114
Points : 45 114
des soucis de positionnement du sans doute à des différentes d'interprétation de positions offset de margin et de boxtype...

Je te conseillerais d'utiliser une librairie de type jquery
http://www.openstudio.fr/Library-for...wing-with.html
__________________
Ma page Developpez
Président du CCMPTP (Comité Contre le Mot "Problème" dans les Titres de Posts)
Deux règles du succès: 1) Ne communiquez jamais à quelqu'un tout votre savoir...
Votre post est résolu ? Alors n'oubliez pas le Tag


réalisations :www.planet-languages.com|www.saftair.com| www.ouestisol.fr | www.sebemex.fr | www.extramiante.fr | www.sistac-alizay.fr | www.acoustishop.fr | www.litt.fr | www.ouestventil.fr
SpaceFrog est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 16/06/2011, 10h09   #3
Invité de passage
 
Inscription : novembre 2008
Messages : 17
Détails du profil
Informations forums :
Inscription : novembre 2008
Messages : 17
Points : 0
Points : 0
Non j'ai trouvé à l'instant. IE n'aime pas les DIV de 1x1. J'ai modifier ma fonction en 2x2 : plus de soucis. Je passe en résolus, merci.
nialcen est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 16/06/2011, 10h17   #4
Rédacteur/Modérateur
 
Avatar de SpaceFrog
 
Homme
Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Analyste Programmeur
Inscription : mars 2002
Messages : 30 019
Détails du profil
Informations personnelles :
Sexe : Homme
Localisation : Royaume-Uni

Informations professionnelles :
Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Analyste Programmeur
Secteur : Industrie

Informations forums :
Inscription : mars 2002
Messages : 30 019
Points : 45 114
Points : 45 114
ha essaye de rajouter dans ton css un line height :0px et un font-size:0px
__________________
Ma page Developpez
Président du CCMPTP (Comité Contre le Mot "Problème" dans les Titres de Posts)
Deux règles du succès: 1) Ne communiquez jamais à quelqu'un tout votre savoir...
Votre post est résolu ? Alors n'oubliez pas le Tag


réalisations :www.planet-languages.com|www.saftair.com| www.ouestisol.fr | www.sebemex.fr | www.extramiante.fr | www.sistac-alizay.fr | www.acoustishop.fr | www.litt.fr | www.ouestventil.fr
SpaceFrog est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 16/06/2011, 10h26   #5
Rédacteur/Modérateur
 
Avatar de SpaceFrog
 
Homme
Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Analyste Programmeur
Inscription : mars 2002
Messages : 30 019
Détails du profil
Informations personnelles :
Sexe : Homme
Localisation : Royaume-Uni

Informations professionnelles :
Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Analyste Programmeur
Secteur : Industrie

Informations forums :
Inscription : mars 2002
Messages : 30 019
Points : 45 114
Points : 45 114
Hormis le souci du boxtype que l'on corrige avec border 0 plsu le line height et font-size, ce qui gène le plsu c'est ton ton zoom 80%
Sous IE un div de 1 pixel disparait avec un zoom 80%

il ne sait pas afficher 80% d'un pixel ce qui parait logique


Code :
1
2
3
4
5
6
7
8
9
	for(var i=1 ; i<nbPointCentraux ; i++)
	{
		strNewPoints+='<div style="border:0;margin:0; padding:0;font-size:0; line-height:1px; width:1px; height:1px; background-color:'+color+'; position:absolute; top:'+Math.round(y1+i*stepY)+'px; left:'+Math.round(x1+i*stepX)+'px; ">&nbsp;</div>';
	}
 
	//pointe de depart
	strNewPoints+='<div style="border:0;font-size:0;margin:0; padding:0; line-height:0px; width:3px; height:3px; background-color:'+color+'; position:absolute; top:'+(y1-1)+'px; left:'+(x1-1)+'px; ">&nbsp;</div>';
	//point d'arrive
	strNewPoints+='<div style="border:0;font-size:0; margin:0; padding:0;line-height:0px; width:3px; height:3px; background-color:'+color+'; position:absolute; top:'+(y2-1)+'px; left:'+(x2-1)+'px; ">&nbsp;</div>';
__________________
Ma page Developpez
Président du CCMPTP (Comité Contre le Mot "Problème" dans les Titres de Posts)
Deux règles du succès: 1) Ne communiquez jamais à quelqu'un tout votre savoir...
Votre post est résolu ? Alors n'oubliez pas le Tag


réalisations :www.planet-languages.com|www.saftair.com| www.ouestisol.fr | www.sebemex.fr | www.extramiante.fr | www.sistac-alizay.fr | www.acoustishop.fr | www.litt.fr | www.ouestventil.fr
SpaceFrog est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité Cette discussion est résolue.
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 21h25.


 
 
 
 
Partenaires

Hébergement Web