i'm having a brainfart... could someone give my a quick A to my Q? :D lets say i have this
ok, i know that looks fine.. here's my Q: if i then call
will that process the props subtype inside my otherProps type? also, will i get into trouble naming my pointer in otherProps the same as my pointer in the main program?
is that clear or am i just being confusing???
thanks.
type props field x,y,z field name$ end type type otherProps field id field prop.props end type prop.props=new props prop\x=1 prop\y=2 prop\z=3 prop\name="chest" otherProp.otherProps=new otherProps otherProp\id=5 otherProp\prop.props=new props otherProp\prop\x=1 otherProp\prop\y=2 otherProp\prop\z=3 otherProp\prop\name="shield"
ok, i know that looks fine.. here's my Q: if i then call
for prop.props=each props ;process something next
will that process the props subtype inside my otherProps type? also, will i get into trouble naming my pointer in otherProps the same as my pointer in the main program?
is that clear or am i just being confusing???
thanks.