Hi guys,
though working with kix quite a while and searching the forum(s) intensively I didn't find an elegant way to reset the value of @error to zero. I always use a dummy command such as "cd .", which is always successful so that afterwards @error is 0.
Does anybody know a better way?
Thnx!
 Code:
if @error<>0
  ? $errormessage
  cd "." ;sets @error to 0
else
  ? "Success"
endif