Skip to content
Home > Programming > Use a Asterisk for password field….

Use a Asterisk for password fieldโ€ฆ.

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #189343
    Admin
    Administrator

    Hur Hur Hur its nothing hard to do i did this just incase theres someone who cant figure out how to use something to cover the password field made a exsame here for anyone who cares heh… 8)

    #189352
    method
    Member

    @Anonymous wrote:

    Hur Hur Hur its nothing hard to do i did this just incase theres someone who cant figure out how to use something to cover the password field made a exsame here for anyone who cares heh… 8)

    Guest could u send me the code on how to use asterisk for password field i want this for one of my project.Thanks

    #189351
    Admin
    Administrator

    I think I have it let me check for ya 8)

    #189350
    method
    Member

    @Admin wrote:

    I think I have it let me check for ya 8)

    Thanks man i hope u share the logging server source code too:-)
    Does it realy connect to paltalk? it would be nice to have our own log in type of user interface:-)

    #189349
    Admin
    Administrator

    Ah I dont have the server ๐Ÿ™‚ I dont think he never release that, I didnt find the code to change either but check this is mad easy

    on the text box propertie where the password is going do this

    Set the PasswordChar property to “*”

    I gt that from vbforums dint know it was that easy lol

    #189348
    AhFox
    Member

    that’s crazy man …

    hahhaa lolz …

    but there are always alternative way …

    seconds way is ..

    on keypress

    store same where in a variable … and replace the ascii equals to *

    ๐Ÿ™‚

    #189347
    Departure
    Member

    just change the text box font . taaadaaaaaaaa another magic trick

    #189346

    and what about this
    Private Sub Text1_Change()
    Dim TmpLastPWChar As Long
    TmpLastPWChar = SendMessage(Text1.hWnd, EM_GETPASSWORDCHAR, 0&, ByVal 0&)
    If TmpLastPWChar = 0 Or TmpLastPWChar > 89 Then TmpLastPWChar = 64
    Call SendMessage(Text1.hWnd, EM_SETPASSWORDCHAR, TmpLastPWChar + 1, ByVal 0&)
    Text1.Refresh

    End Sub
    it’s easy to set whatever you want for hide your password but my pain is i try to get the pt password, i try everything but no result expected ๐Ÿ˜ฅ
    can anybody tell me how to get the password with api call when i drag my cursor on password zone of pt login screen.
    i’m sure someone has already done it.

    #189345
    Departure
    Member

    yeap its been done, but not the normal APi calls you would normaly use to get standard passwords feilds, I know on h2k someone made a password revealer for paltalk …

    I personnaly have’nt looked into it , so i dont know much about it

    #189344

    thanks Departure for reply it, but i solved my problem
    i can get pt password by using postmessage ๐Ÿ˜† I always solve my probleme after post my question ๐Ÿ˜›

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.