Delphi and Kylix

Moderators: pritaeas
Number of threads: 7264
Number of posts: 19073

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
TmaskEdit Posted by sad.boy on 11 Jan 2007 at 12:58 AM
Hey guys,
i'm tired of searching ,i am looking for a resource that has explained
tmaskedit settings so i can make my own filter on this object

thanks in advanced
Report
Re: TmaskEdit Posted by zibadian on 11 Jan 2007 at 2:19 AM
: Hey guys,
: i'm tired of searching ,i am looking for a resource that has explained
: tmaskedit settings so i can make my own filter on this object
:
: thanks in advanced
:
Place a TMaskEdit on the form and press F1. There you have one of the greatest recources of all: the help files.
Report
Re: TmaskEdit Posted by sad.boy on 11 Jan 2007 at 2:34 AM
: : Hey guys,
: : i'm tired of searching ,i am looking for a resource that has explained
: : tmaskedit settings so i can make my own filter on this object
: :
: : thanks in advanced
: :
: Place a TMaskEdit on the form and press F1. There you have one of the greatest recources of all: the help files.
:
yeah it's good but does it provide all information about editing mask operators? like !\(999\)000-0000;1;_ i have no idea what ! , \ or ; means
in 'edit mask' option
Report
Re: TmaskEdit Posted by zibadian on 11 Jan 2007 at 2:54 AM
: : : Hey guys,
: : : i'm tired of searching ,i am looking for a resource that has explained
: : : tmaskedit settings so i can make my own filter on this object
: : :
: : : thanks in advanced
: : :
: : Place a TMaskEdit on the form and press F1. There you have one of the greatest recources of all: the help files.
: :
: yeah it's good but does it provide all information about editing mask operators? like !\(999\)000-0000;1;_ i have no idea what ! , \ or ; means
: in 'edit mask' option
:
From the help page for TCustomMaskEdit.EditMask:
!: If a ! character appears in the mask, optional characters are represented in the EditText as leading blanks. If a ! character is not present, optional characters are represented in the EditText as trailing blanks.
\: The character that follows a \ character is a literal character. Use this character to use any of the mask special characters as a literal in the data.
;: The ; character is used to separate the three fields of the mask.

Report
Re: TmaskEdit Posted by sad.boy on 11 Jan 2007 at 4:26 AM
: : : : Hey guys,
: : : : i'm tired of searching ,i am looking for a resource that has explained
: : : : tmaskedit settings so i can make my own filter on this object
: : : :
: : : : thanks in advanced
: : : :
: : : Place a TMaskEdit on the form and press F1. There you have one of the greatest recources of all: the help files.
: : :
: : yeah it's good but does it provide all information about editing mask operators? like !\(999\)000-0000;1;_ i have no idea what ! , \ or ; means
: : in 'edit mask' option
: :
: From the help page for TCustomMaskEdit.EditMask:
: !: If a ! character appears in the mask, optional characters are represented in the EditText as leading blanks. If a ! character is not present, optional characters are represented in the EditText as trailing blanks.
: \: The character that follows a \ character is a literal character. Use this character to use any of the mask special characters as a literal in the data.
: ;: The ; character is used to separate the three fields of the mask.
:
:
thanks would tell me what does
1;_ mean? it's at the end of the all filters for edit mask property

Report
Re: TmaskEdit Posted by zibadian on 11 Jan 2007 at 4:31 AM
: : : : : Hey guys,
: : : : : i'm tired of searching ,i am looking for a resource that has explained
: : : : : tmaskedit settings so i can make my own filter on this object
: : : : :
: : : : : thanks in advanced
: : : : :
: : : : Place a TMaskEdit on the form and press F1. There you have one of the greatest recources of all: the help files.
: : : :
: : : yeah it's good but does it provide all information about editing mask operators? like !\(999\)000-0000;1;_ i have no idea what ! , \ or ; means
: : : in 'edit mask' option
: : :
: : From the help page for TCustomMaskEdit.EditMask:
: : !: If a ! character appears in the mask, optional characters are represented in the EditText as leading blanks. If a ! character is not present, optional characters are represented in the EditText as trailing blanks.
: : \: The character that follows a \ character is a literal character. Use this character to use any of the mask special characters as a literal in the data.
: : ;: The ; character is used to separate the three fields of the mask.
: :
: :
: thanks would tell me what does
: 1;_ mean? it's at the end of the all filters for edit mask property
:
:
The 1 is the second part of the mask. Help file description: The second part is the character that determines whether the literal characters of a mask are saved as part of the data.
The _ is the third part of the mask, and you might already guess where that description is: in the help files. "The third part of the mask is the character used to represent unentered characters in the mask."
Report
Re: TmaskEdit Posted by sad.boy on 11 Jan 2007 at 4:42 AM
: : : : : : Hey guys,
: : : : : : i'm tired of searching ,i am looking for a resource that has explained
: : : : : : tmaskedit settings so i can make my own filter on this object
: : : : : :
: : : : : : thanks in advanced
: : : : : :
: : : : : Place a TMaskEdit on the form and press F1. There you have one of the greatest recources of all: the help files.
: : : : :
: : : : yeah it's good but does it provide all information about editing mask operators? like !\(999\)000-0000;1;_ i have no idea what ! , \ or ; means
: : : : in 'edit mask' option
: : : :
: : : From the help page for TCustomMaskEdit.EditMask:
: : : !: If a ! character appears in the mask, optional characters are represented in the EditText as leading blanks. If a ! character is not present, optional characters are represented in the EditText as trailing blanks.
: : : \: The character that follows a \ character is a literal character. Use this character to use any of the mask special characters as a literal in the data.
: : : ;: The ; character is used to separate the three fields of the mask.
: : :
: : :
: : thanks would tell me what does
: : 1;_ mean? it's at the end of the all filters for edit mask property
: :
: :
: The 1 is the second part of the mask. Help file description: The second part is the character that determines whether the literal characters of a mask are saved as part of the data.
: The _ is the third part of the mask, and you might already guess where that description is: in the help files. "The third part of the mask is the character used to represent unentered characters in the mask."
:
thanks again,you know i always try learning things from the help but
delphi help is confusing,would tell me how you use the help?
for example for mask text i chose it and pressed F1 then after entering
the help section for mask edit, i read it's instructions but after that
i have no idea which link to click to direct me to correct section for
finding out more details
Report
Re: TmaskEdit Posted by zibadian on 11 Jan 2007 at 4:57 AM
: : : : : : : Hey guys,
: : : : : : : i'm tired of searching ,i am looking for a resource that has explained
: : : : : : : tmaskedit settings so i can make my own filter on this object
: : : : : : :
: : : : : : : thanks in advanced
: : : : : : :
: : : : : : Place a TMaskEdit on the form and press F1. There you have one of the greatest recources of all: the help files.
: : : : : :
: : : : : yeah it's good but does it provide all information about editing mask operators? like !\(999\)000-0000;1;_ i have no idea what ! , \ or ; means
: : : : : in 'edit mask' option
: : : : :
: : : : From the help page for TCustomMaskEdit.EditMask:
: : : : !: If a ! character appears in the mask, optional characters are represented in the EditText as leading blanks. If a ! character is not present, optional characters are represented in the EditText as trailing blanks.
: : : : \: The character that follows a \ character is a literal character. Use this character to use any of the mask special characters as a literal in the data.
: : : : ;: The ; character is used to separate the three fields of the mask.
: : : :
: : : :
: : : thanks would tell me what does
: : : 1;_ mean? it's at the end of the all filters for edit mask property
: : :
: : :
: : The 1 is the second part of the mask. Help file description: The second part is the character that determines whether the literal characters of a mask are saved as part of the data.
: : The _ is the third part of the mask, and you might already guess where that description is: in the help files. "The third part of the mask is the character used to represent unentered characters in the mask."
: :
: thanks again,you know i always try learning things from the help but
: delphi help is confusing,would tell me how you use the help?
: for example for mask text i chose it and pressed F1 then after entering
: the help section for mask edit, i read it's instructions but after that
: i have no idea which link to click to direct me to correct section for
: finding out more details
:
What more details do you want? If you want to know the relation to other properties/method, click the "See Also". If you want to have an overview of the defining class, click on the link with the classname. In many cases the help also lists the defining unit, related types, subtypes, etc. For classes you can also look at the heirarchy, to see how it relates to other classes.



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.