Page 1 of 3

Mega Paint Source

Posted: Sat Oct 23, 2010 1:18 pm
by Cheatmasterbw
Here is the source to Mega Paint v9.3 - CNS Community. I hope that everyone can use this to help them with coding, and to make advancements on the mega paint program.

NOTE: THIS REQUIRES .NET FRAMEWORK 4.0 OR HIGHER!
NOTE: IF YOU WOULD LIKE NO ERRORS, USE VISUAL STUDIO 2010

[ACTUAL MEGA PAINT]

PLEASE PM ME ANY CHANGES THAT YOU HAVE MADE!

Re: Mega Paint Source - Community Project

Posted: Sat Oct 23, 2010 1:27 pm
by NecroPhis
i think thats very expensive

Re: Mega Paint Source - Community Project

Posted: Sat Oct 23, 2010 1:31 pm
by Cheatmasterbw
Maybe, but it took a lot of time, and it prevents members of codenstuff that are here just to steel code, and not give to the community.

Re: Mega Paint Source

Posted: Sat Oct 23, 2010 6:14 pm
by TheSecretBoy
where is the source ?

Re: Mega Paint Source

Posted: Sat Oct 23, 2010 7:40 pm
by Cheatmasterbw
I think it got deleted. I Re-Uploaded it though.

Re: Mega Paint Source

Posted: Sun Oct 24, 2010 2:06 pm
by RunarM
10 points ;O

Re: Mega Paint Source

Posted: Mon Oct 25, 2010 12:42 pm
by Lewis
Ive downloaded it, but I get 50 errors ... Designer errors.

Re: Mega Paint Source

Posted: Tue Oct 26, 2010 6:48 pm
by Cheatmasterbw
do you use VS 2010?? that may be the problem.

If not, could you list the errors?

Re: Mega Paint Source

Posted: Fri Oct 29, 2010 7:05 am
by RunarM
How about something to make picturebox1 bigger/smaller:

*Picturebox2
*Timer
Code: Select all
 Private Sub SizeOfPicturebox1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SizeOfPicturebox1.Tick
        NumericUpDownResizeWidth.Value = PictureBox1.Width
        NumericUpDownResizeHeight.Value = PictureBox1.Height
        Button7.PerformClick()

    End Sub

    Private Sub PictureBox2_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox2.MouseDown
        movement = True
        x = Windows.Forms.Cursor.Position.X - PictureBox1.Size.Width
        y = Windows.Forms.Cursor.Position.Y - PictureBox1.Size.Height

    End Sub

    Private Sub PictureBox2_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox2.MouseMove
        If movement Then
            PictureBox1.Height = Windows.Forms.Cursor.Position.Y - y
            PictureBox1.Width = Windows.Forms.Cursor.Position.X - x
        End If
    End Sub

    Private Sub PictureBox2_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox2.MouseUp
        movement = False
    End Sub
Image (right)
http://i700.photobucket.com/albums/ww4/ ... Show-8.png

Re: Mega Paint Source

Posted: Tue Dec 07, 2010 10:13 pm
by Cheatmasterbw
Looks Good!