• Welcome to Valhalla Legends Archive.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - VeBee

#1
.NET Platform / Re: Loops
August 05, 2006, 08:52 PM
thanks guys! but my dad just helped me do it.
now i can continue on with the easy part.
#2
.NET Platform / Loops
August 05, 2006, 07:39 PM
How do i use a loop to count how many lines there are in a richtextbox?
#3
.NET Platform / Re: Help! VB.NET 2003
August 05, 2006, 06:33 PM
ok ill look into it.
#4
.NET Platform / Help! VB.NET 2003
August 05, 2006, 03:23 PM
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim rwow As String
        rwow = RichTextBox1.Find("RunWoW")
        If rwow = "RunWoW" Then
            RichTextBox1.Text = "accepted"
        End If
    End Sub


Hi, i just write the above code, and when i run it, nothing happens when i click the button.
:(
#5
Battle.net Bot Development / Re: Logging Stuff
August 04, 2006, 11:04 PM
my spider made a eek sound when i did my search. i dont think im ready to use a packet buffer.

well i got to goto bed. ill be back tommorow.
#6
Battle.net Bot Development / Re: Logging Stuff
August 04, 2006, 10:38 PM
lol are you guys making fun of me? :P

Anyways i went to that web page for vb, and its for vb not vb.net.

but it did help explain tcp/ip.

And i dont know how to send packets yet.
#7
Battle.net Bot Development / Re: Logging Stuff
August 04, 2006, 06:10 PM
ok where do i retreive a packet buffer?

is a packet buffer just a list of packets?
#8
Battle.net Bot Development / Re: Logging Stuff
August 04, 2006, 05:42 PM
a even bigger question i have is, how do i send a packet using vb.net?
#9
Battle.net Bot Development / Logging Stuff
August 04, 2006, 04:52 PM
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        RichTextBox1.Text = "Connecting..."
        Dim myClient As System.Net.Sockets.TcpClient
        Dim monitor As System.Net.Sockets.NetworkStream
        myClient = New System.Net.Sockets.TcpClient
        myClient.Connect("useast.battle.net", 6112)
        monitor = myClient.GetStream()
        RichTextBox1.Text = Convert.ToString(monitor)
    End Sub

im an extreme newb. what exactly have i done above? If im right it will like, connect, then get a stream of packets and put them in the textbox.

problem is when i ran it nothing happened.

once again me is newb.
#10
Battle.net Bot Development / VB.Net 2003
July 31, 2006, 05:12 PM
I have vb.net 2003. And when i try to place a winsock control on my form it says i need a license?
What do i do?

Also, what can I make that is simple, and involves battle.net?