Visual Basic 6.0 stuff list (post what you can do on VB6.0!)

Archive of the first decade of Off Topic Posts
Locked
User avatar
bround
Rainbow Master
Posts: 641
Joined: Thu Jul 24, 2008 10:55 am

Visual Basic 6.0 stuff list (post what you can do on VB6.0!)

Post by bround » Fri Dec 04, 2009 12:05 pm

OK, I'm creating a VB6.0 list. If you guys know anything other.... (coding ONLY) post it here!

I'll start:

LOGIN SYSTEM

Private Sub Command1_Click()
If Text1.Text = "usernamehere" And Text2.Text = "passwordhere" Then
MsgBox ("Access Granted!")
Form1.Hide
Form2.Show
Unload Me
Else
MsgBox ("The username and/or password you have entered is incorrect. Please try again!")
End If
End Sub
Last edited by bround on Tue Dec 08, 2009 9:20 am, edited 1 time in total.
Avid TTR player and TTS developer, a new revolutionary server in works.
User avatar
Blast!10
Rainbow Star
Posts: 1739
Joined: Thu Nov 02, 2006 7:26 pm
Location: Tel Aviv

Post by Blast!10 » Fri Dec 04, 2009 7:56 pm

I love Visual Basic. I've been using it for almost five years. Going to get some simple code examples to post here now.
User avatar
bround
Rainbow Master
Posts: 641
Joined: Thu Jul 24, 2008 10:55 am

Post by bround » Sat Dec 05, 2009 1:10 pm

Other one:

msgbox ("message on the messagebox here")
Avid TTR player and TTS developer, a new revolutionary server in works.
Locked