listbox cell text change event

hi,

ive noticed that if i change the text in a cell using code (listbox1.cell(row,column) = “fred” )
then i don’t get any events firing to let me know its happened.

am i missing something ?

What event should fire? AFAIK there is none like “Value Changed” as Listbox Eventhandler or am i wrong?

CELLTEXTCHANGE

Oh in desktop, indeed. I dont work often with the Desktop-Edition :wink:
But anyway: you’re right @Russ Lunn no event is fired.
Why dont you put the code after that one where you changed the text?
Edit:
See documentation for the listbox

[quote]ListBox.CellTextChange ( Row as Integer, Column as Integer )
Occurs after the KeyDown event if the KeyDown event returns False. Row and Column are zero-based.
The event passes the Row and Column of the cell being edited.[/quote]

well i have a calender control that just updates the listbox cell, or textfield etc. i suppose i could make it run the code, but i was trying to make it as generic as possible.

it doesn’t fire when you update a cell programatically, unfortunately.