05-23-2007 06:29 AM
05-23-2007 06:37 AM
05-23-2007 06:37 AM
05-23-2007 09:43 AM
05-23-2007 12:59 PM
Dear Aart-Jan,
I'm not sure if I got your problem correctly, but maybe this is what you're looking for:
For i = 1 to GroupCount ' Loop over all groups
If GroupName(i) = "TurbulenceLengthdScales" Then
exist = TRUE
Exit For
else
exist = FALSE
End If
Next
If exist Then
CAll Msgbox("Group has index no: " & i)
else
CAll Msgbox("Group does not exist")
End If
Regards,
DavidS!