CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Posts
    72

    Password question

    I am creating a program that will require the user to enter a new password to complete a wizard. I have two edit boxs that have to have the same "word" in them to continue to the next step. How can I make sure that the same thing is entered in the 2 boxes?

    Thanks,
    Nathan Strandberg


  2. #2
    Join Date
    Apr 1999
    Posts
    65

    Re: Password question

    The thing goes like this,
    just check for the syntax
    GetWindowText(ID1,pszText1)
    GetWindowText(ID2,pszText2)
    lstrcmp(pszTExt1,pszText2);
    and for the yahoo pager like checking
    you need to loginto ur account once a while to
    see if there is some mail there look into
    the POP3 protocol if the server supports it
    its I think RFC 1745
    hope this helps


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