1 Attachment(s)
[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.
http://www.retry-later.com/wowarmoryviewer/1.jpg
http://www.retry-later.com/wowarmoryviewer/2.jpg
http://www.retry-later.com/wowarmoryviewer/3.jpg
post update:
picture of the program working etc
http://www.retry-later.com/wowarmoryviewer/4.jpg
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 :)
Re: [vb2008] WoW Armory Browser
Sourcecode ;[
WebBrowser.Navigate("http://eu.wowarmory.com/character-sheet.xml?r=RealmVariable&n=NickVariable");
Re: [vb2008] WoW Armory Browser
Quote:
Originally Posted by
x000x01
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.
Re: [vb2008] WoW Armory Browser
it's just a webbrowser -.-
Re: [vb2008] WoW Armory Browser
Quote:
Originally Posted by
XZeenon
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?
Re: [vb2008] WoW Armory Browser
This is a college project?
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.
Re: [vb2008] WoW Armory Browser
Quote:
Originally Posted by
Ron
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.
Re: [vb2008] WoW Armory Browser
well no offence but anyone can do this.
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.
Re: [vb2008] WoW Armory Browser
Quote:
Originally Posted by
XZeenon
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.
Quote:
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 :)
Re: [vb2008] WoW Armory Browser
This IS useful for those who play WoW, although extremly easy.
Re: [vb2008] WoW Armory Browser
Quote:
Originally Posted by
Mr.Lucifer
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 :)
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.
Re: [vb2008] WoW Armory Browser
Quote:
Originally Posted by
WulfgarXX
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 :)