How to refresh List in MIDP

While the List is displayed as active Screen and i add more items to list the display is not updated - is there any way to display the appended list items Presently i am displaying alert of refreshing display.
[230 byte] By [munjaltkansara] at [2007-9-26 3:45:05]
# 1
Hi,Are you using more than one threads? (i.e. one for displaying the list and the rest for updating the list) If you are using single threads, the list will update itself upon any changes to it if it is active.Shen Bo
bo_shen at 2007-6-29 12:25:26 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2

I am using command Thread to update the list and another thread -- which receives data from the server is updating the List -- >

Here i do not see the list update -- from both thread i am calling setTitle -- the effect is reflected on title bar but list is not updated.

To refresh list -- Presently i am displaying alert for refreshing display.

munjaltkansara at 2007-6-29 12:25:26 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
Hi,To overcome the problem, you should make the List object as static while declaring it. By doing so all the instances of the MIDlet share the same List object.goodday,S.M.Reddy.
smreddy_2000 at 2007-6-29 12:25:26 > top of Java-index,Java Mobility Forums,Java ME Technologies...