'Form Code
Private Sub form_load()
Dim s As String
Close #1
rtbChat.BackColor = vbBlack
rtbChat.Font.Size = 8
lvChannel.View = lvwSmallIcon
AddChat &H99CC00, "Welcome to Lost.Bot v1.0 Test Edition by Krush[LM]"
frmChat.KeyPreview = True
frmChat.Caption = ".:. Lost.Bot v1.0 [Test] (Disconnected)"
frmAbout.lblTitle.Caption = ".:. Lost.Bot v1.0 Test Edition"
Me.Show
Me.Refresh
AutoClear = True
s = Dir$(App.Path & "\quickchannels.txt"

If s = "" Then
lbQC.AddItem "Clan L-M"
lbQC.AddItem "Clan Overdosed"
lbQC.AddItem "Clan Dark)Side"
lbQC.AddItem "Clan {DK}"
lbQC.AddItem "Clan DarkStar"
mnuQC1.Caption = lbQC.List(0)
mnuQC2.Caption = lbQC.List(1)
mnuQC3.Caption = lbQC.List(2)
mnuQC4.Caption = lbQC.List(3)
mnuQC5.Caption = lbQC.List(4)
Exit Sub
End If
Open (App.Path & "\quickchannels.txt"

For Input As #1
Do
Input #1, s
lbQC.AddItem s
Loop Until EOF(1)
mnuQC1.Caption = lbQC.List(0)
mnuQC2.Caption = lbQC.List(1)
mnuQC3.Caption = lbQC.List(2)
mnuQC4.Caption = lbQC.List(3)
mnuQC5.Caption = lbQC.List(4)
End Sub
says method or data member not found. you'll need to view the project as a whole.