Results 1 to 7 of 7

Thread: Need help with a login

  1. #1

    Thread Starter
    New Member
    Join Date
    Aug 2003
    Location
    South Florida
    Posts
    4

    Need help with a login

    I am trying to make a login that when you click the Ok Button would send the info to me via email. here is what i have so far on the whole project

    Option Explicit

    Public LoginSucceeded As Boolean

    Private Sub cmdCancel_Click()
    'set the global var to false
    'to denote a failed login
    LoginSucceeded = False
    Me.Hide
    End Sub

    Private Sub cmdOK_Click()
    'check for correct password
    If txtPassword = "password" Then
    'place code to here to pass the
    'success to the calling sub
    'setting a global var is the easiest
    LoginSucceeded = True
    Me.Hide
    Else
    MsgBox "Invalid Password, try again!", , "Login"
    txtPassword.SetFocus
    SendKeys "{Home}+{End}"
    End If
    End Sub

    Private Sub Form_Load()

    End Sub

    Private Sub txtUserName_Change()

    End Sub




    -----------------------------------------------------------------------------------
    Where would i add a mailto?

  2. #2
    Fanatic Member Armbruster's Avatar
    Join Date
    Sep 2002
    Location
    Maryland Heights, MO
    Posts
    857

    Re: Need help with a login

    Originally posted by liljoker9191
    Where would i add a mailto?
    Is this going to be on a specific computer or will it be installed on multiple computers? A mailto will open an outlook mail form and require the user to hit send. It could be automated using Winsock controls if you are running it on a computer that has access to a mail server (either an online mail server or an exchange server)

    Search MSDN for Winsock and you will find examples of this . . .
    "Look! Up in the sky! It's a bird! It's a plane! It's Diaper-Head Boy! (there by my name!) Yes, Diaper-Head Boy, who disguised as my son, Seth, fights a never-ending battle for truth, justice and terrorizing my house!

    Resistance is futile, you will be compiled . . . Please!

  3. #3

    Thread Starter
    New Member
    Join Date
    Aug 2003
    Location
    South Florida
    Posts
    4
    it will be installed on one computer, u know that outwar game? well i want to make a fake proxy clicker with a login screen, which a person who has the prog would type in there outwar username for the user field and there outwar password for the pass field, then i want that info sent to me with out them knowing so i can delete there accounts, so yes i would like it to run through a winsock control. i will be sending this to pinpoint people who spam me all the time and spam chatrooms. this will be one way of cleaning up internet outwar spam. could u help me on this Armbruster please? please email when when possible at [email protected] thanks, brandon

  4. #4
    The picture isn't missing BuggyProgrammer's Avatar
    Join Date
    Oct 2000
    Location
    Vancouver, Canada
    Posts
    5,217
    no-one is gonna help you if you are going to use it to do harm
    Remember, if someone's post was not helpful, you can always rate their post negatively .

  5. #5

    Thread Starter
    New Member
    Join Date
    Aug 2003
    Location
    South Florida
    Posts
    4
    it isnt intended to do harm, it is made to stop spam from the little game on the internet outwar. go in a gaming chatroom on aim and what is all u see? u see links for outwar. there is more outwar spam than porno!

  6. #6
    The picture isn't missing BuggyProgrammer's Avatar
    Join Date
    Oct 2000
    Location
    Vancouver, Canada
    Posts
    5,217
    Originally posted by liljoker9191
    it isnt intended to do harm, it is made to stop spam from the little game on the internet outwar. go in a gaming chatroom on aim and what is all u see? u see links for outwar. there is more outwar spam than porno!
    if someone gave you junk mail (that's real mail), would you go to their business and steal their keys?
    Remember, if someone's post was not helpful, you can always rate their post negatively .

  7. #7

    Thread Starter
    New Member
    Join Date
    Aug 2003
    Location
    South Florida
    Posts
    4
    of course, j/k i am sending this to certain people who annoy ME DIRECTLY with there outwar spam. i got a virus from the outwar site once!
    Last edited by liljoker9191; Aug 8th, 2003 at 07:12 PM.

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