[b]Hello new on xojo, I encounter a problem with the function activecell and masks:
I put the following code in the function celllgotfocus, the input format works, but when I tab or I click in column 1 or 0, the text that was entered disappears, what’s wrong? Thank you for your help :
If column = 0 then
Me.editCell row, 0
Me.ActiveCell.Mask = “## / ## / ####”
Elseif column = 1 then
Me.EditCell row, 1
me.ActiveCell.Mask = “##: ##”
End if
[/b]