Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    nathan455's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    59
    Reputation
    10
    Thanks
    8
    My Mood
    Cool

    Cool Nathan455's notepad

    hello mpgh.net,first of i got bored i dont even no if this should even be on mpgh.net but.... i made my own simple little notepad lol screenshots



    [IMG]https://i1086.photobucke*****m/albums/j442/nathan455/wow1.png[/IMG]


    [IMG]https://i1086.photobucke*****m/albums/j442/nathan455/wow.png[/IMG]

    xD pretty cool?

    Virus Scaners

    VirusTotal - Free Online Virus, Malware and URL Scanner

    nate's Notepad.rar - Jotti's malware scan

    AND LAST THING...CREDITS GO TO ME

  2. The Following User Says Thank You to nathan455 For This Useful Post:

    Brownie (04-04-2011)

  3. #2
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Well... approved.

  4. #3
    nathan455's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    59
    Reputation
    10
    Thanks
    8
    My Mood
    Cool
    Quote Originally Posted by xXModz View Post
    Well... approved.
    thanks 1 question does notepad even belong in this section? lol

  5. #4
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Wait.....AHAHAHHAHAHAHAHHAHAHAHHAHA..:Wait wait....AHAHHAhhhhhhhhhhAAAAAHhhhhAAA..


    Done.

    This is not a notepad, This is a NOTHING!

    You cant save, format, anything, You can just write omg.

    This dont ever got a code, Just add a textbox -.-
    Last edited by Lyoto Machida; 04-03-2011 at 03:31 PM.

  6. #5
    nathan455's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    59
    Reputation
    10
    Thanks
    8
    My Mood
    Cool
    Quote Originally Posted by -Away View Post
    Wait.....AHAHAHHAHAHAHAHHAHAHAHHAHA..:Wait wait....AHAHHAhhhhhhhhhhAAAAAHhhhhAAA..


    Done.

    This is not a notepad, This is a NOTHING!

    You cant save, format, anything, You can just write omg.

    READ it says simple and by the way do you have anything nice to say about my stuff

    its not like i go on your post and say your stuff is a NOTHING
    Last edited by nathan455; 04-03-2011 at 03:34 PM.

  7. #6
    djrubenmp3's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    In JackInDaBox
    Posts
    586
    Reputation
    10
    Thanks
    493
    My Mood
    Psychedelic
    I totally agree whit -Away

  8. #7
    nathan455's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    59
    Reputation
    10
    Thanks
    8
    My Mood
    Cool
    you know im just gonna stop releasing stuff you guys have nothing nice to say about my stuff so why not even bother commenting on my self if you dont like it

  9. #8
    TremBalla's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Drunk
    @nathan455

    fine... get banned then....
    and we will keep flaming
    and bro... this is fucking useless

    -u cant save documents
    -u cant open again

    -----fucking useless

    we just giving u imput.

  10. #9
    nathan455's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    59
    Reputation
    10
    Thanks
    8
    My Mood
    Cool
    thats nice next time ill try to get those things... like really guys read my post says simple og course its not gonna have anything omg use your head

  11. #10
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Man, To be a notepad, Need to have at least a open/save function...And thats a simple notepad...BUT YOUR "THING" ISNT A NOTEPAD..ITS A TEXTBOX!

  12. #11
    nathan455's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    59
    Reputation
    10
    Thanks
    8
    My Mood
    Cool
    idc its a notepad to me

  13. #12
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    Quote Originally Posted by nathan455 View Post
    idc its a notepad to me
    Ok, Thanks for making me /LAAAWWLL

  14. #13
    -Away-'s Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    At my house on my computer i live in C:/Users/-Away-/HACKS Post: 1,00,00,00
    Posts
    475
    Reputation
    -3
    Thanks
    32
    My Mood
    Sick
    Its ok but like everyone else said no save or open and stuff if you can add a save and open button it would be better atleast it would be a note pad but good program

  15. #14
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    I will help cuz im a GOOD man

    Open File code (In a button, Shiit, Anything you want ):
    Code:
      Try
                TextBox1.Clear()
                Dim OpenFile As New OpenFileDialog With {.Title = "Opening a file..", .FileName = "", .Filter = "Text Files (*.txt)|*.txt|All Files (*.*)|*.*"}
                If Not OpenFile.ShowDialog = Windows.Forms.DialogResult.Cancel Then
                    Dim ReadTheFile As New IO.StreamReader(OpenFile.FileName)
                    TextBox1.Text = ReadTheFile.ReadToEnd
                    ReadTheFile.Close()
                End If
                MsgBox("FILE OPENED!", MsgBoxStyle.Information, "Information")
            Catch ex As Exception
                MsgBox(ex.Message, MsgBoxStyle.Critical, "Error")
            End Try
    Save File Code (In a button, Shiit, Anything you want ) :

    Code:
        Try
                Dim SaveFile As New SaveFileDialog With {.Title = "Saving a file..", .FileName = "", .Filter = "Text Files (*.txt)|*.txt|All files (*.*)|*.*"}
                If Not SaveFile.ShowDialog = Windows.Forms.DialogResult.Cancel Then
                    Dim SavingTheFile As New IO.StreamWriter(SaveFile.FileName)
                    SavingTheFile.Write(TextBox1.Text)
                    SavingTheFile.Close()
                End If
    
                MsgBox("FILE SAVED!", MsgBoxStyle.Information, "Information")
            Catch ex As Exception
                MsgBox(ex.Message, MsgBoxStyle.Critical, "ERROR")
            End Try
    If you want to know, I didn leeched that code , made in 2 min..Here..
    Last edited by Lyoto Machida; 04-03-2011 at 07:53 PM.

  16. #15
    CheatCreatorzz's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    922
    Reputation
    18
    Thanks
    730
    My Mood
    Amused
    Yeah xD no save buttons etc, save file, open file, clear button => simply to code try it nathan! make it more advanced, * make 1 multi tool
    and change icon plss..newby?





    (_¸.•*´'`°¤¸'¸¤°´'`*•.¸_)

    Video Creator
    GFX Creator
    C++ Coder
    D3D Coder

    (¯`*•.¸,¤°´'`°¤,¸.•*´¯)




Page 1 of 2 12 LastLast