Jobs
Author: mathew ball Date Submitted: 7/24/2007 Category: Other Compatibility: VB 6 This code has been accessed 2912 times.
Email Yourself this snippet:
' N/A
Code
sub main dim strFName as string dim strSName as string dim strFullname as string msgbox "Hello world" strFName=inputbox("What is your firstame?") strSName=inputbox("What is your secondname?") strFullname = strFName & " " & strSName msgbox "Hello " & strFullname 'hopefully this will help some new people get started... 'why not try making a code for username and password? 'also visit my site 'http://www.goodhostbadhost.com/ end sub