Mega Paint Source

If you have completed an application and wish to share the complete source/project files with everyone then please post it in here. Source-code files only, no tutorials.
24 posts Page 1 of 3
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Mega Paint Source
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!
You do not have the required permissions to view the files attached to this post.
Last edited by Cheatmasterbw on Tue Nov 02, 2010 8:59 pm, edited 3 times in total.
http://www.megaapps.tk/
User avatar
NecroPhis
VIP - Donator
VIP - Donator
Posts: 345
Joined: Sun Aug 08, 2010 1:14 pm

i think thats very expensive
Image
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

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.
http://www.megaapps.tk/
User avatar
TheSecretBoy
Top Poster
Top Poster
Posts: 195
Joined: Wed Jun 09, 2010 9:39 am

Re: Mega Paint Source
TheSecretBoy
where is the source ?
Code'N'Stuff
TheSecretBoY
Dont forget to give thanks for those helpful posts cooll;
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Re: Mega Paint Source
Cheatmasterbw
I think it got deleted. I Re-Uploaded it though.
http://www.megaapps.tk/
User avatar
RunarM
Hardcore Programmer
Hardcore Programmer
Posts: 508
Joined: Wed Nov 18, 2009 11:33 pm

Re: Mega Paint Source
RunarM
10 points ;O
Just another day in my life.
http://www.codexvideos.com
Lewis
Coding God
Coding God
Posts: 1564
Joined: Sun Dec 20, 2009 2:12 pm

Re: Mega Paint Source
Lewis
Ive downloaded it, but I get 50 errors ... Designer errors.
Image
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Re: Mega Paint Source
Cheatmasterbw
do you use VS 2010?? that may be the problem.

If not, could you list the errors?
http://www.megaapps.tk/
User avatar
RunarM
Hardcore Programmer
Hardcore Programmer
Posts: 508
Joined: Wed Nov 18, 2009 11:33 pm

Re: Mega Paint Source
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
Just another day in my life.
http://www.codexvideos.com
User avatar
Cheatmasterbw
Coding God
Coding God
Posts: 1506
Joined: Fri Jan 01, 2010 2:30 pm

Re: Mega Paint Source
Cheatmasterbw
Looks Good!
http://www.megaapps.tk/
24 posts Page 1 of 3
Return to “Source-Code”