Bonjour messieurs

j'aimerai intégré un progress bar dans un HTA

voici le message a afficher pendant l’exécution, merci pour votre aide
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<head>
<title>*Information </title>
<HTA:APPLICATION
    APPLICATIONNAME=""
    BORDER="thin"
    BORDERSTYLE="raised"
   SCROLL="no"
   SINGLEINSTANCE="yes"
    CAPTION="yes"
    SYSMENU="no"
    SHOWINTASKBAR="no"
    contextMenu="no"
    SELECTION="no"
    windowState="normal"
>
<style type="text/css">
<!--
body,td,th {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10pt;
}
body {
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}
.style2 {
    font-size: 8pt;
    font-weight: bold;
}
-->
</style></head>
 
<script language="VBScript">
 
Sub Window_OnLoad
    window.resizeTo 800,440
    intTop = (screen.height - document.body.clientHeight) / 2
    intLeft = (screen.width - document.body.clientWidth) / 2
    window.moveto intLeft,intTop
End Sub
 
Sub CloseButton
    strComputer = "." 
    Set objShell = CreateObject("WScript.Shell")
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    strPath = objFSO.GetAbsolutePathName(".")
    strCleanup = "wscript " & Chr(34) & strPath & "\Cleanup.vbs" & Chr(34)
 
    If objFSO.FileExists(strPath & "\Cleanup.vbs") Then
        objShell.exec(strCleanup)
        self.close()
    Else
        self.close()
    End If
End Sub
</script>
 
<body STYLE="font:14 pt verdana; color:003366">
 
<style type="text/css">
<!--
.Style1 {
    color: #003366;
    font-weight: bold;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}
.Style2 {font-size: 10px}
.Style3 {font-size: 12px}
-->
</style>
<table width="742" border="0">
  <tr>
    <td colspan="3"><img src="./images/header.jpg" width="800" height="72"></td>
  </tr>
  <tr>
    <td colspan="3"><div align="center" class="Style1">Installation  en cours, merci de patienter....</div></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td colspan="3"><div align="center"><img src="./images/ring.gif" width="96" height="96"></div></td>
  </tr>
  <tr>
    <td colspan="3"><ul type="disc">
        <li><span class="Style2"><span class="Style3"><strong>Temps d'installation: </strong>10 Minutes</span></span></li>
        <li class="Style3"><strong>Mode d'installation: </strong>Silensieuse </li>
    </ul></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td colspan="3">Pour tout complèment d'information merci de contactez le Centre de Services.<br>
      Par téléphone depuis Tréville: xxxxx <br>
      Par téléphone depuis l'extérieur: yyyyyyy<br>
      Via le portail <a href="https://zzzzzz.com/"> Oasis </a></td>
  </tr>
</table>
</body>