|
How can the content in Memo be completely cleared, that is to say, the content of the last run will no longer be displayed in the next run.
I made a display box, but after clearing each time, I run another file again, and there are still some contents displayed in the last run, such as the first run:
0 CONST A ADR = 1 LEVEL = 0 SIZE = 6
1 VAR A ADR = 3 LEVEL = 0 SIZE = 0
2 VAR B ADR = 4 LEVEL = 0 SIZE = 0
3 VAR C ADR = 5 LEVEL = 0 SIZE = 0
When running another file for the second time after clearing, it is displayed as follows:
0 CONST D ADR = 1 LEVEL = 0 SIZE = 4
1 VAR D ADR = 3 LEVEL = 0 SIZE = 0
2 VAR B ADR = 4 LEVEL = 0 SIZE = 0
3 VAR C ADR = 5 LEVEL = 0 SIZE = 0
But among them
2 VAR B ADR = 4 LEVEL = 0 SIZE = 0
3 VAR C ADR = 5 LEVEL = 0 SIZE = 0
Two are missing from the second file,
I want to know how to clear it up? Is it clearing the cache? If so, what should I do? Thank you! |
|