Nach welchen Kriterien werden OnlineVariablen angelegt?

Nach welchen Kriterien werden OnlineVariablen angelegt?

Hallo,
in einem Projekt muss ich auf mehrere Variablen mit VBA zugreifen. Dafür habe ich ein Container mit OnlineVariablen erstellt. œber ein "Filter" lass ich alle Variablen reinschreiben, die den String ".bStatus" im Namen haben. Nun würde ich gerne über den Index (ID) der OnlineVariablen auf diese zugreifen. Die Variablen werden allerdings in dem Container nicht so angeordnet wie in der Variablenliste im Projekt. Hab mir den Container in eine .txt Datei schreiben lassen, aber ich kann nicht erkennen nach welchem System die Variablen dem Container hinzugefügt werden. Selbst die Variablen der Arrays werden nicht aufeinanderfolgend aufgelistet.
Kann man die OnlineVariablen sortieren oder dem Container sinnvoll zufügen, ohne dass ich jede Variable einzeln hinzufügen muss?
Hier noch der Code mit dem ich die OnlineVariablen erstelle. (stammt aus dem Forum)
VBA Code:

Dim WithEvents zOLV As OnlineVariable
Dim strVariables() As String

Const strVarNamePart As String = ".bStatus" 'Filter von dem VariableName
Public Sub Statusverarbeitung()
Dim iVar As Integer
ReDim strVariables(thisProject.Variables.Count)
'erstelle onlinevariable - container
For iVar = 0 To thisProject.Variables.Count - 1
'suche nach dem Muster im Variablenname (strVarNamePart)
If InStr(1, thisProject.Variables.Item(iVar).Name, strVarNamePart) > 0 Then
strVariables(iVar) = thisProject.Variables.Item(iVar).Name
End If
Next
'#######################################

'erstelle onlinevariable - container
Set zOLV = thisProject.OnlineVariables.Item("myOLV")
If zOLV Is Nothing Then
Set zOLV = thisProject.OnlineVariables.CreateOnlineVariables("myOLV")
End If
'hinufgen der Variablen (array) als bulk in den online container
zOLV.AddBulk strVariables()

'aktiviere BULK Mode
zOLV.ActivateBulkMode
'aktiviere VariableBulkChange - Event
zOLV.Define


This is a migrated post! Originally posted on 01.07.2011 by user sniggi. Please be aware that information can be outdated.

    Disclaimer

    This document governs the use of our Community Forum. By registering and using the platform, you accept these conditions.

    The COPA-DATA Community Forum serves to encourage the exchange of information and experience about the zenon software between forum users respectively zenon users.

    Please mind that any published information on the Community Forum is the subjective opinion and view based on the experience and the level of knowledge of the author. COPA-DATA does not overtake any responsibility for the content and the accuracy of the shared information.

    Users of the Community Forum are encouraged to share only well-founded experiences and to point out any risks associated with the implementation of proposed solutions to problems. COPA-DATA at its absolute discretion, reserves the right to moderate the forum. In this connection COPA-DATA may remove any information containing false facts, potentially dangerous solutions, bad language or content that may insult, degrade or discriminate others. COPA-DATA may block a non-complying user from forum access if the user violated this provision.

    COPA-DATA reserves the right to change this document from time to time at own discretion.


    Ing. Punzenberger COPA-DATA GmbH
    Karolingerstraße 7b · 5020 Salzburg · Austria
    www.copadata.com