[vb2008] WoW Armory Browser

Page 1 of 2 12 LastLast
Results 1 to 15 of 18
  1. #1
    Alpha Member Suicide is offline
    MemberRank
    Jun 2005 Join Date
    A CoffinLocation
    2,498Posts

    [vb2008] WoW Armory Browser

    I made this just simply so it wouldn't have me having to type out or run through my bookmarks to find my characters armory sheet and compare others etc.

    Its a small program. Clean. No keyloggers (i promise). Spyware or adware in it.

    I have lost the source of the program but its not very hard anyway. It's just simple Browser Direction commands and such.

    It has a Character Search, Direct Character linking (Realm/Character) and works on the following webs. US, EU and KR. and some silly 'oh shit button' (i needed that cos of college etc)

    I used it for college and gave it to a couple of friends and they told me it was good :)
    The bug i noticed in it is the text appearance on some labels happen to change colour because of what operating system you are using. Another bug is that, if the armory page hasn't been uploaded yet (fully) then it will crash and not respond if you close it down to early.




    post update:
    picture of the program working etc


    There is no further development to this program. Unfortunately i just cannot be arsed. But there was gonna be a new feature for items and quests that will link with WoWhead and allakzam etc.

    Oh the in-program browser is Internet Explorer. >< sorry

    update:
    fished out the source code.
    Form1.vb
    Code:
    Public Class Form1
    
        Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs)
    
        End Sub
    
        Private Sub ShowBrowserToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ShowBrowserToolStripMenuItem.Click
            Form2.Show()
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
            Form2.Show()
            If RadioButton1.Checked Then
                Form2.Browser.Navigate("http://eu.wowarmory.com/character-sheet.xml?r=" + Me.TextBox2.Text + ("&n=") + Me.TextBox1.Text)
            End If
            If RadioButton2.Checked Then
                Form2.Browser.Navigate("http://us.wowarmory.com/character-sheet.xml?r=" + Me.TextBox2.Text + ("&n=") + Me.TextBox1.Text)
            End If
            If RadioButton3.Checked Then
                Form2.Browser.Navigate("http://kr.wowarmory.com/character-sheet.xml?r=" + Me.TextBox2.Text + ("&n=") + Me.TextBox1.Text)
            End If
        End Sub
    
        Private Sub PlayerSearchToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PlayerSearchToolStripMenuItem.Click
            Form3.Show()
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
            Form2.Hide()
            Form3.Hide()
            Me.WindowState = FormWindowState.Minimized
        End Sub
    
        Private Sub CloseToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CloseToolStripMenuItem.Click
            Me.Close()
        End Sub
    
        Private Sub AboutToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AboutToolStripMenuItem.Click
            Form4.Show()
        End Sub
    End Class
    Form2.vb
    Code:
    Public Class Form2
        Private Sub WebBrowser1_ProgressChanged(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles Browser.ProgressChanged
            ToolStripProgressBar1.Maximum = e.MaximumProgress
            ToolStripProgressBar1.Value = e.CurrentProgress
        End Sub
    End Class
    Form3.vb
    Code:
    Public Class Form3
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Form2.Show()
            Form2.Browser.Navigate("http://" + ComboBox1.Text + ".wowarmory.com/search.xml?searchQuery=" + Me.TextBox1.Text + "&searchType=all")
            Me.Hide()
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Form2.Hide()
            Form1.WindowState = FormWindowState.Minimized
            Me.Hide()
        End Sub
    End Class
    Form4.vb is empty lol.

    I practically just gave you all the whole source, you can use it to create your own or simply use mine. I don't mind :)
    Attached Files Attached Files
    Last edited by Suicide; 01-03-09 at 05:46 PM.


  2. #2
    Enthusiast x000x01 is offline
    MemberRank
    Jan 2009 Join Date
    EuropeLocation
    32Posts

    Re: [vb2008] WoW Armory Browser

    Sourcecode ;[

    WebBrowser.Navigate("http://eu.wowarmory.com/character-sheet.xml?r=RealmVariable&n=NickVariable");

  3. #3
    Alpha Member Suicide is offline
    MemberRank
    Jun 2005 Join Date
    A CoffinLocation
    2,498Posts

    Re: [vb2008] WoW Armory Browser

    Quote Originally Posted by x000x01 View Post
    Sourcecode ;[

    WebBrowser.Navigate("http://eu.wowarmory.com/character-sheet.xml?r=RealmVariable&n=NickVariable");
    I'll see what i can fish up from what i had.
    updated post.

  4. #4
    WowIwasSuperCringeB4 XZeenon is offline
    MemberRank
    Jun 2008 Join Date
    CanadaLocation
    1,405Posts

    Re: [vb2008] WoW Armory Browser

    it's just a webbrowser -.-

  5. #5
    Alpha Member Suicide is offline
    MemberRank
    Jun 2005 Join Date
    A CoffinLocation
    2,498Posts

    Re: [vb2008] WoW Armory Browser

    Quote Originally Posted by XZeenon View Post
    it's just a webbrowser -.-
    Suppose you could say that, but it only gives you direct link to WoW Armory unless you click adverts that take you away from it.

    What do you expect it to do anyway? Make you cookies?

  6. #6
    Omega Ron is offline
    MemberRank
    Apr 2005 Join Date
    Location
    8,990Posts

    Re: [vb2008] WoW Armory Browser

    This is a college project?

  7. #7
    Account Upgraded | Title Enabled! patrickisit is offline
    MemberRank
    Feb 2009 Join Date
    Birmingham, EngLocation
    414Posts

    Re: [vb2008] WoW Armory Browser

    Nice work mate.
    Much eaiser then having to open Mozilla with WoW at the same time.
    I actually did need this to check for guild members, so thanks.

    Quote Originally Posted by XZeenon
    it's just a webbrowser -.-
    Why bother posting, thats not useful at all.

  8. #8
    Alpha Member Suicide is offline
    MemberRank
    Jun 2005 Join Date
    A CoffinLocation
    2,498Posts

    Re: [vb2008] WoW Armory Browser

    Quote Originally Posted by Ron View Post
    This is a college project?
    No. Just something i did randomly cos College Computers are so slow, so instead of all the fessy need to open Mozilla and type the url out so slowly, i just made this.

  9. #9
    WowIwasSuperCringeB4 XZeenon is offline
    MemberRank
    Jun 2008 Join Date
    CanadaLocation
    1,405Posts

    Re: [vb2008] WoW Armory Browser

    well no offence but anyone can do this.

  10. #10
    Account Upgraded | Title Enabled! patrickisit is offline
    MemberRank
    Feb 2009 Join Date
    Birmingham, EngLocation
    414Posts

    Re: [vb2008] WoW Armory Browser

    Either way, it's still helpful for others.
    And still belongs in the section as it is coding.

    So, stop whining.

  11. #11
    Alpha Member Suicide is offline
    MemberRank
    Jun 2005 Join Date
    A CoffinLocation
    2,498Posts

    Re: [vb2008] WoW Armory Browser

    Quote Originally Posted by XZeenon View Post
    well no offence but anyone can do this.
    to those who know how to code
    and knowing it as a fact, not everyone can.

    secondly.
    http://forum.ragezone.com/f86/showca...ations-205661/
    Commenting on a showcase:
    Showcase is for constructive critizism. In other words, you may post that you dislike certain aspects of a showcase, but only if you also include your opinion on how it could be better! Saying only something like "this sucks!" will get you warned or even banned! If you feel your post might be taken as offensive, do not post.
    unless you are gonna post something useful then i want to hear it, if not and its all like 'lulz, browser again rofl, its shit ppl know how to do it xD lul' then you can get out :)

  12. #12
    Account Upgraded | Title Enabled! Mr.Lucifer is offline
    MemberRank
    Apr 2007 Join Date
    797Posts

    Re: [vb2008] WoW Armory Browser

    This IS useful for those who play WoW, although extremly easy.

  13. #13
    Alpha Member Suicide is offline
    MemberRank
    Jun 2005 Join Date
    A CoffinLocation
    2,498Posts

    Re: [vb2008] WoW Armory Browser

    Quote Originally Posted by Mr.Lucifer View Post
    This IS useful for those who play WoW, although extremly easy.
    Yep. I use it basicly all the time at college at sometimes at home (if Mozilla isn't opened) and yeah, its simple to create, but it's also a simple program.

    If i can or anyone here wants to, they can use the source and write out new features. I might start use it to make quest/item search etc :)

  14. #14
    Alpha Member WulfgarXX is offline
    MemberRank
    Jan 2007 Join Date
    1,507Posts

    Re: [vb2008] WoW Armory Browser

    XZeenon - you call yourself a programmer ? Be ashamed of yourself.

    Suicide - nice work, how about an upgrade - enter character name and/or dropdown/enter realmname ? For search on character items etc.

  15. #15
    Alpha Member Suicide is offline
    MemberRank
    Jun 2005 Join Date
    A CoffinLocation
    2,498Posts

    Re: [vb2008] WoW Armory Browser

    Quote Originally Posted by WulfgarXX View Post
    XZeenon - you call yourself a programmer ? Be ashamed of yourself.

    Suicide - nice work, how about an upgrade - enter character name and/or dropdown/enter realmname ? For search on character items etc.
    Yep that's possible, but i'd have to enter all the realm lists from the EU, US and KR :P but i suppose its just simple copy and paste from a external website.

    Thanks for the idea! Really appricate it :)



Page 1 of 2 12 LastLast

Advertisement