On Jan 8, 2007, at 9:06 PM, John McKernon wrote:
So I have a lovely new listbox. When a user clicks in a cell in a
column
whose type is Inline Editable, I use:
MyList.EditCell row, column
You don't need both the Type setting and the call. EditCell(row,
column) makes the cell editable.
How do I make the edit field go back to being a "regular" listbox
cell? I've
tried all kinds of things, including setting ActiveCell=nil, to no
avail.
You can set the focus to the window and deselect the listbox, for
example in your PopUp's Change event:
self.SetFocus
self.ListBox1.ListIndex = -1
Best,
-Jack
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>