![]() |
|
[HC Official] Email Spammer - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools) +--- Thread: [HC Official] Email Spammer (/Thread-HC-Official-Email-Spammer) |
RE: [VB.NET]Email Spammer[SOURCE] - ArkPhaze - 04-04-2013 (04-04-2013, 04:30 AM)Psycho_Coder Wrote: Thanks a lot , I didn't knew that part.Okay thanks for your reply. There is simply not much to reply on usually in these forums so it's not that I want to bash your code. Don't take it that way, I would love to help others whenever I can, so that's all I am trying to do here. This just happens to be an active thread in this section, so here I am. I'll jump at any thread here that I see usually. The rule of thumb I go by, and for good reason, is that definitely anything, 5 conditions or more, should be in a switch or case statement (vb.net) when possible. The reason is because of the way things are dealt with behind the scenes. Case statements can execute faster, as the compiler or CLR can use a lookup/hash table. Anything less than 5 conditions and the case statement is the same as an if statement really... But a Case statement also offers readability which is a good thing. MSIL does have a specific OpCode for case statements, or switch statements in C#. edit: So this can be converted as well: Code: Select Case String.Empty
Case GhostTextBox1.Text
Label12.Visible = True
Case GhostTextBox2.Text
Label13.Visible = True
Case GhostTextBox5.Text
Label14.Visible = True
Case GhostTextBox6.Text, GhostTextBox7.Text
Label15.Visible = True
Label16.Visible = True
MessageBox.Show("Please choose your Mail Provider","Mail Provider Not Chosen",MessageBoxButtons.OK,MessageBoxIcon.Error)
Case Else
clear()
s1 = 0
ProgressBar1.Value = 0
ProgressBar1.Update()
GhostButton1.Enabled = False
GhostButton3.Enabled = False
GhostButton2.Enabled = True
BackgroundWorker1.RunWorkerAsync()
ProgressBar1.Maximum = NumericUpDown1.Value
ProgressBar1.Value = 0
End SelectRE: [VB.NET]Email Spammer[SOURCE] - Psycho_Coder - 04-04-2013 Well before you gave your feed back on the code the application was working for except for the progress bar part, but as you gave your feed back I had corrected my code, as initially the code was working but it was not efficient it was deprecated, so in short bad way to code, you gave your feed back and explained the things and I made the corrections , so in this way I learnt what are my mistakes and I had corrected my self, and my code and made it a better one that before. So, its not like you bashed up my code , its like you taught me how to bring out perfection, "I am here to learn , and gain perfection.The more yo criticize me the better I will become. " So, whatever you said I followed, if it requires more corrections then I will update this again and again, as next time these mistake will not be made. However I have updated the code and made a bit modifications. Links have been updated as well. RE: [VB.NET]Email Spammer[SOURCE] - Linuxephus™ - 04-12-2013 (04-02-2013, 08:08 PM)Exploits Wrote: Gonna test this when i get some time!!!, but looks great thanks for the share I just want you to know that moke:'ing is bad for your health.Now if you'll excuse me good sir, I'd appreciate if you'd stop stalking me in PsychoCoder's thread that I may take the time to peruse his Email Spammer.
RE: [VB.NET]Email Spammer[SOURCE] - Deque - 04-12-2013 Do you want to make this HC Official? I will move it there if you say yes. RE: [VB.NET]Email Spammer[SOURCE] - Psycho_Coder - 04-12-2013 (04-12-2013, 01:55 PM)Deque Wrote: Do you want to make this HC Official? I will move it there if you say yes. Yes , I'd love to and it will be an honor serving HC . Thank you for the offer . RE: [VB.NET]Email Spammer[SOURCE] - Linuxephus™ - 04-12-2013 (04-12-2013, 01:55 PM)Deque Wrote: Do you want to make this HC Official? I will move it there if you say yes. You may as well already knowing he'll reply with "yes", not to mention it already has the HC Logo on it, which merely leaves moving it to it's rightfull place among the Elite Programs for HackCommunity. P.S.-No worries, I'm only stalking you thru three threads momentarily because you're the only one leaving a trail of comments for me to reply to.:lub: RE: [VB.NET]Email Spammer[SOURCE] - Deque - 04-12-2013 (04-12-2013, 01:59 PM)Psycho_Coder Wrote:(04-12-2013, 01:55 PM)Deque Wrote: Do you want to make this HC Official? I will move it there if you say yes. -moved- (04-12-2013, 02:01 PM)Linuxephus Wrote:(04-12-2013, 01:55 PM)Deque Wrote: Do you want to make this HC Official? I will move it there if you say yes. You can stalk me as much as you want. Just keep your way of writing. RE: [HC Official] Email Spammer - killerOfCode - 04-12-2013 Woah woah woah, isn't this an *ethical* hacking forum? Hmm... RE: [HC Official] Email Spammer - killerOfCode - 04-12-2013 Woah woah woah, isn't this an *ethical* hacking forum? Hmm... RE: [HC Official] Email Spammer - Linuxephus™ - 04-12-2013 (04-12-2013, 09:49 PM)killerOfCode Wrote: Woah woah woah, isn't this an *ethical* hacking forum? We're only ethical until it's convenient not to be unethical. I jest...really I do.:lol: |