VB Code:
  1. Private Sub Form_Load()
  2.     Dim Nick1 As String, Nick2 As String, Nick3 As String
  3.     Nick1 = GetRandomNick: Nick2 = GetRandomNick: Nick3 = GetRandomNick
  4.     If LenB(Nick1) = LenB(Nick2) Then If InStr(Nick1, Nick2) = 1 Then Nick2 = "she"
  5.     MsgBox Nick1 & " thinks " & Nick2 & " is very good in programming. However, " & Nick3 & " greatly disagrees with this." & _
  6.         " It is now up to " & Nick1 & " [HL="#FFFF80"]to [/HL]figure [HL="#FFFF80"]out [/HL]what should be done: to kill " & Nick3 & " or just cause a ban.", _
  7.         vbInformation, "VBForums Latest Headlines"
  8.     Unload Me
  9. End Sub