Hey I got a question:
Say for example I have a text file with the following values in it:
Red
Green
Blue
I want to read in from that file every 10 seconds or so, and list all those
values that are in the text file in context menu as menuitems...
If I use the technique you offered (which is really nice) in a loop,
I will just clear the list and then read in the values again...
Then I will have a problem: new space will be constantly created
which will give me a memory leak... (Because of the New commands,
and AddHandler). How can I get rid of that memory leak?
If there is any other way of implementing what I need, I would gladly
appreciate hearing about it.
Thanks in advance,
Jon