home *** CD-ROM | disk | FTP | other *** search
- property pNetId, pFieldName, pURL, precordData
-
- on new me, aURL, fieldname, aBoolean
- if voidp(aBoolean) then
- aBoolean = 0
- end if
- pURL = aURL
- precordData = aBoolean
- pFieldName = fieldname
- member(pFieldName).text = EMPTY
- getCFMData(me)
- add(the actorList, me)
- end
-
- on stepFrame me
- if not netDone(pNetId) then
- return
- end if
- if (netError(pNetId) = EMPTY) or (netError(pNetId) = "OK") then
- processResults(netTextresult(pNetId), pFieldName, precordData)
- end if
- deleteOne(the actorList, me)
- end
-
- on getCFMData me
- bdGetNetText(pURL)
- pNetId = getLatestNetID()
- end
-