I'm trying to get past this url in VB 6.0

I added one Inet control and in the properties field i put a username and password

http://fantasy.hoops.smallworld.com/home.html

Login is Teamname
Password is password.

This is my code
Code:
Private Sub Command1_Click()
Dim b() As Byte
Dim intCount As Integer
Dim strData As String

Inet1.Cancel ' Stops any current operations

b() = Inet1.OpenURL("http://fantasy.hoops.smallworld.com/home.html", icByteArray)

For intCount = 0 To UBound(b) - 1

  strData = strData & Chr(b(intCount))

Next intCount

txtTest.Text = strData

End Sub
When i see the code i see that it didn't do anything with the user/pass...

Anyone have any ideas/suggetions ?

Thanx in advance.