(07-25-2011, 11:08 AM)Believable Wrote: Message Boxes are easier with VB6
Code:
MsgBox "This is the body of the message", vbInformation, "This is the title"
This is what this would do:
(07-25-2011, 12:03 PM)Believable Wrote: VB6 in my books is much better, it has barely any dependencies and is very stable, some of the best 'hacking tools' out there is made in VB6
For example:
HostBooter
BlackShades
That's not any easier than later VB.
Code:
MsgBox("Message", MsgBoxStyle.Information, "Title")
Virtually the exact same thing, only I use MessageBox.Show. Much more advaned, and more syntax options:
Code:
MessageBox.Show("this is your message", "title", MessageBoxButtons.YesNo, MessageBoxIcon.Information, 0)
VB6 is horrible, and it's not any better just because a couple "good" tools were coded with it. It's all in the programmer himself/herself.
On SF though, tools like that can't be featured, as it's against the rules compared to what is allowed on HF
I'd agree with the ping though. Add an option for ping information > ping response time for example.
Here's a quick test project I put together in 5 mins: