Hi,
erm....
Dim
sTemp3 As String
sTemp3 = ""
Dim step As TS.step
Dim object As TS.PropertyObject
Set step = Sequence.GetStep(i, StepGroup_Main)
Set object = step.AsPropertyObject
temp3 = object.TS.SData.Call.parms(0).name
The variables in bold - are they supposed to be the same?
here's another thought, how about something like :
Dim sTemp3 As String
sTemp3 = ""
Dim step As TS.step
Dim object As TS.PropertyObject
Set step = Sequence.GetStep(i, StepGroup_Main)
Set object = step.TS.SData.Call.parms(0).AsPropertyObject
sTemp3 = object.GetValString("name")
so instead of accessing the value as part of the object itself, you're getting the TS API to query the object and return the value.
Mig
ht not work, but it's another thought.
S.
// it takes almost no time to rate an answer