maskedit 에서 editmask를 9999-99-99;0; 로 표현했구요.... 델파이에서 숫자입력시 (____-__-__)입력을하고 다음 필드로 넘어갈때 날짜체크 하는 방법을 어떻게 해야하는지 좀 알려주세요.. 가령 월에 20을 입력하면 error 메세지를 뿌려...
nilriri
•
2000.05.06 20:12
var
mydate :TDateTime
begin
try
myDate := StrToDateTime(FormatMaskText(em_birthday.text,'####-...
mydate :TDateTime
begin
try
myDate := StrToDateTime(FormatMaskText(em_birthday.text,'####-##-##))
except
showmessage('날짜오류')
end;
레마 wrote:
> maskedit 에서 editmask를 9999-99-99;0; 로 표현했구요....
> 델파이에서 숫자입력시 (____-__-__)입력을하고 다음 필드로 넘어갈때
> 날짜체크 하는 방법을 어떻게 해야하는지 좀 알려주세요..
> 가령 월에 20을 입력하면 error 메세지를 뿌려주는 방법이요...