|
-
Aug 6th, 2003, 06:53 PM
#1
Thread Starter
New Member
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?
-
Aug 6th, 2003, 08:47 PM
#2
Fanatic Member
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!
-
Aug 6th, 2003, 09:18 PM
#3
Thread Starter
New Member
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
-
Aug 6th, 2003, 10:22 PM
#4
The picture isn't missing
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  .
-
Aug 7th, 2003, 11:28 AM
#5
Thread Starter
New Member
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!
-
Aug 7th, 2003, 06:02 PM
#6
The picture isn't missing
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  .
-
Aug 7th, 2003, 09:06 PM
#7
Thread Starter
New Member
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|