<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
zeljko schrieb:
<blockquote cite="mid:200804060944.47240.zeljko@holobit.net" type="cite">
  <pre wrap="">On Saturday 05 April 2008 22:09, wile64 wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Fixed in r14766
    </pre>
  </blockquote>
  <pre wrap=""><!---->
I see it's fixed, but I cannot set any mask properly ?!?!?
eg: EditMask = 99/99/2000  
-> text:  00.00.20__
now I'm setting this value as text
 07.04.2008
-> av raised -> "Error setting text ....."

What is proper usage of LCL TMaskEdit ?
_______________________________________________
Lazarus mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Lazarus@lazarus.freepascal.org">Lazarus@lazarus.freepascal.org</a>
<a class="moz-txt-link-freetext" href="http://www.lazarus.freepascal.org/mailman/listinfo/lazarus">http://www.lazarus.freepascal.org/mailman/listinfo/lazarus</a>

  </pre>
</blockquote>
Got this issue zo with the patch. It seems to be a problem with the
zeros. I change the following line:<br>
<br>
       Char_Number              : Result := Ch In ['0'..'9'];<br>
<br>
to:<br>
       Char_Number              : Result := Ch In ['0'..'9', #32];<br>
<br>
in the maskedit.pp.<br>
</body>
</html>