Important: The information in this document is obsolete and should not be used for new development.
GetStatusString
Retrieves the status string associated with an asynchronous process.
void GetStatusString (in StringPtr statusStr);
statusStr
- A pointer to a string buffer. On return, the buffer contains the status string.
DISCUSSION
TheGetStatusString
method returns a pointer to the last status string set by theSetStatusString
method or an empty string ifSetStatusString
has not been called since the object was initialized or reset.Typically, the status string describes what the process is currently doing. For example, if an asynchronous process is downloading data,
GetStatusString
might return the string "Downloading".SEE ALSO
TheSetStatusString
method (page 312).