Submitted by Anonymous on Thu, 07/11/2002 - 21:57. Developers
I have a list that requires the removal of items based on other actions. I have tried the XmListDeletePos and the item doesn`t visibly get removed from the list until I open the widget again. Am I missing something? How can I delete it and show the user that it`s deleted?
Thanks!
It should work. I suspect that you are not letting the application return to the event loop, at which point its visible changes would be updated i.e. you can`t make a change and have it take place "immediately" while your program is still making other changes.
Thanks! I knew it was something I had overlooked. That did it!