CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Masked Edit

  1. #1
    Join Date
    Feb 1999
    Posts
    11

    Masked Edit



    - When binding a textbox to a database field, the value changes to the current field value for each new record - when surfing through the records. When an empty record is found the textbox is blank. No Problem!


    - When using a Masked Edit box for phone numbers, the same occurs except when an empty record is found the value is carried over from the last records field, it does not write to the empty record, but is misleading in appearing that something is there when it really isn't.


    - Is there a way around this, to show the empty field as empty?



  2. #2
    Join Date
    Mar 1999
    Posts
    4

    Re: Masked Edit



    Properties for MUST be :

    Allowprompt = False

    PromptInclude = False

    PromptChar = ' '

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured