Bonjour,

En VBA j'utilise le code suivant afin de pouvoir piloter une application TGC. Je voulais savoir si il existe dans un des langages web(javascript, html..) l'équivalent ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
 Dim Sessions As Object
    Dim System As Object
    Set System = CreateObject("EXTRA.System")   ' Création de l'objet
    If (System Is Nothing) Then
        MsgBox "Could not create the EXTRA System object.  Stopping macro playback."
        Stop
    End If
    Set Sessions = System.Sessions
 
    If (Sessions Is Nothing) Then
        MsgBox "Could not create the Sessions collection object.  Stopping macro playback."
        Stop
    End If
Merci!