Login Register
The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


File Pumper :P filter_list
Author
Message
File Pumper :P #1
My File Pumper Tongue :-
[Image: capturecv.jpg]

Download :-
Code:
http://adf.ly/Ot2P

Src :-
Code:
Public Class Form2 #Region " Global Variables " Dim Point As New System.Drawing.Point() Dim X, Y As Integer #End Region #Region " GUI " Private Sub Main_MouseMove(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseMove If e.Button = MouseButtons.Left Then Point = Control.MousePosition Point.X = Point.X - (X) Point.Y = Point.Y - (Y) Me.Location = Point End If End Sub Private Sub Main_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseDown X = Control.MousePosition.X - Me.Location.X Y = Control.MousePosition.Y - Me.Location.Y End Sub #End Region Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim ofd As New OpenFileDialog ofd.Filter = "Exe Files|*.exe" ofd.ShowDialog() TextBox1.Text = ofd.FileName End Sub Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub PictureBox2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox1.Click Me.Close() End Sub Private Sub PictureBox3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox2.Click WindowState = FormWindowState.Minimized End Sub Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PictureBox3.Click Dim sfd As New SaveFileDialog sfd.Filter = "Exe Files|*.exe" sfd.ShowDialog() Dim filesize As Double = Val(NumericUpDown1.Value) IO.File.Copy(TextBox1.Text, sfd.FileName) If RadioButton1.Checked Then filesize = filesize * 1024 End If If RadioButton2.Checked Then filesize = filesize * 1048576 End If Dim filetopump = IO.File.OpenWrite(sfd.FileName) Dim size = filetopump.Seek(0, IO.SeekOrigin.[End]) While size < filesize filetopump.WriteByte(0) size += 1 End While filetopump.Close() MsgBox("The Job is done! xD -Lenalee") End Sub Private Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) Handles LinkLabel1.LinkClicked System.Diagnostics.Process.Start("http://www.hackcommunity.com") End Sub End Class

-Lenalee

P.S. No Comments if you dislike it!
[Image: 5DQAS.gif]

May the force be with you...

Reply

RE: File Pumper :P #2
Looks nice and cute. :p
Info of filesize before pumping and after, could make this better. Smile
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: File Pumper :P #3
(01-30-2011, 06:00 AM)Coder-san Wrote: Looks nice and cute. :p
Info of filesize before pumping and after, could make this better. Smile

Good idea Tongue give me a few days ^_^'
[Image: 5DQAS.gif]

May the force be with you...

Reply

RE: File Pumper :P #4
the link is dead, please reupload Smile

Reply

RE: File Pumper :P #5
Nice work mate, Cheers.



Reply







Users browsing this thread: 1 Guest(s)