Not sure if you'd class it as a bug or not. The app that I'm building has several editfields. I wanted to set each editfild's mask length by a constant so I entered the following code in the editfiled.open event handler:
Dim i as integer for i = 1 to cMaxLen me.Mask = me.Mask + "C" next This works fine but if you add some text to the editfield at design time the app will beep and not display all the text properly on application launch. Just thought I'd post this on as it took me a bit to find this problem as I don't usually have the sound up and I clear the text fields on startup. Nothing like trying to find a random beep in an app when it start up. As I like to have temp text in the editfield while designing I simply added a me.text = "" at the head of the above code to fix it. Best regards, Mark _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
