Help w/ my new operating system - Printable Version +- BP Forums (https://bpforums.info) +-- Forum: Archived Forums (https://bpforums.info/forumdisplay.php?fid=55) +--- Forum: Archived Forums (https://bpforums.info/forumdisplay.php?fid=56) +---- Forum: VB.NET (Visual Basic 2010/2008) (https://bpforums.info/forumdisplay.php?fid=8) +----- Forum: Programming Help (https://bpforums.info/forumdisplay.php?fid=9) +----- Thread: Help w/ my new operating system (/showthread.php?tid=540) |
Help w/ my new operating system - Gamester699 - 06-09-2012 i don't really know the code for the login form can anybody help? Re: Help w/ my new operating system - brandonio21 - 06-09-2012 Uh. Well, what you can do is create a whole User class, outlined a little something like this: Class User --> Username --> Password -->Sub Save() -->Sub Remove() -->Function Exists() Re: Help w/ my new operating system - Gamester699 - 06-10-2012 ok thanks <!-- s --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="" title="Very Happy" /><!-- s --> Re: Help w/ my new operating system - Xandereliteinsight - 07-23-2012 um heres my code i think it will help it did 4 me public class form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click If TextBox1.Text = "User Name" AndAlso TextBox2.Text = "Password" Then form2.show() Else MsgBox("Invalid!") End If End Sub End Class Re: Help w/ my new operating system - Xandereliteinsight - 07-23-2012 but ummmm sorry cant help with register <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarrassed" /><!-- s:oops: --> Re: Help w/ my new operating system - Vinwarez - 07-24-2012 The register is rather easy. It just depends how want it; through database or through settings. |