Page 4 of 13 FirstFirst ... 23456 ... LastLast
Results 46 to 60 of 190
  1. #46
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    Quote Originally Posted by randomhacker View Post
    Wow. 10-15mins. Hes some coder man. or he just decrypt ur thingy, jks
    It might take longer o_O
    I still have homework

    @corndog
    Glad you think my injector is nice

  2. #47
    Luke420's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    The Computer :/
    Posts
    6,768
    Reputation
    674
    Thanks
    982
    My Mood
    Cold
    Quote Originally Posted by bombsaway707 View Post
    Then Learn C++ cuz i dont see you doing SHIT for the community alls you do is sit back and bitch about us coders, while i dont see you DOING SHIT for the community except pissing people off
    yeah corndog for cock sk

  3. #48
    JIGS4W's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    2,906
    Reputation
    48
    Thanks
    156
    Quote Originally Posted by Iamazn1 View Post
    It might take longer o_O
    I still have homework

    @corndog
    Glad you think my injector is nice
    Shit. i haven't done any of my assessment yet. You just reminded me. Well 15 mins or more to make a program is still pretty good. I couldn't do that
    Quote Originally Posted by bombsaway707 View Post
    Then Learn C++ cuz i dont see you doing SHIT for the community alls you do is sit back and bitch about us coders, while i dont see you DOING SHIT for the community except pissing people off
    MOVE DAT FAT ASS AND LEARN SOMETHING USEFUL BESIDES HOW TO BITCH FOR DUMMIES
    Its 50% right. Sometimes he does us off but he did some useful thing for us. Leeching some good hack/programs for us mpgh to use.
    Last edited by JIGS4W; 10-15-2009 at 08:13 PM.


  4. #49
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by Iamazn1 View Post
    It might take longer o_O
    I still have homework

    @corndog
    Glad you think my injector is nice
    Im sure buddy, your probably googling how to make a picture taker in vb.net right now

  5. #50
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by randomhacker View Post
    Shit. i haven't done any of my assessment yet. You just reminded me. Well 15 mins or more to make a program is still pretty good. I couldn't do that

    Its 50% right. Sometimes he does us off but he did some useful thing for us. Leeching some good hack/programs for us mpgh to use.
    How is leeching doing anything good? its useful but he still hasnt coded shit fo the community

  6. #51
    tooktheriver2's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    395
    Reputation
    11
    Thanks
    27
    My Mood
    Sick
    man this post got really big in a lil bit of time ,,, well i dont even use them i dont think alot of people use them make a diferent section for them ..

    https://www.rew ards1.com/index.php?referrer_id=1235684
    remove the spaces, and click on the link on top for free nx!!

  7. #52
    Iamazn1's Avatar
    Join Date
    Oct 2009
    Gender
    male
    Posts
    407
    Reputation
    12
    Thanks
    50
    My mom is already mad at me for not doing HW, so im not sure if this works.
    Code:
      Dim SFD As New SaveFileDialog
            SFD.ShowDialog()
            Dim SFDFileName As String
            SFDFileName = SFD.FileName.ToString
            Dim oDataObj As IDataObject = System.Windows.Forms.Clipboard.GetDataObject()
            If oDataObj.GetDataPresent(System.Windows.Forms.DataFormats.Bitmap) Then
                Dim oImgObj As System.Drawing.Image = oDataObj.GetData(DataFormats.Bitmap, True)
                oImgObj.Save(SFDFileName, System.Drawing.Imaging.ImageFormat.Png)
            End If

  8. #53
    JIGS4W's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    2,906
    Reputation
    48
    Thanks
    156
    Quote Originally Posted by Iamazn1 View Post
    My mom is already mad at me for not doing HW, so im not sure if this works.
    Code:
      Dim SFD As New SaveFileDialog
            SFD.ShowDialog()
            Dim SFDFileName As String
            SFDFileName = SFD.FileName.ToString
            Dim oDataObj As IDataObject = System.Windows.Forms.Clipboard.GetDataObject()
            If oDataObj.GetDataPresent(System.Windows.Forms.DataFormats.Bitmap) Then
                Dim oImgObj As System.Drawing.Image = oDataObj.GetData(DataFormats.Bitmap, True)
                oImgObj.Save(SFDFileName, System.Drawing.Imaging.ImageFormat.Png)
            End If
    I will test now


  9. #54
    Bombsaway707's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Gym
    Posts
    8,799
    Reputation
    791
    Thanks
    4,004
    My Mood
    Amused
    Quote Originally Posted by Iamazn1 View Post
    My mom is already mad at me for not doing HW, so im not sure if this works.
    Code:
      Dim SFD As New SaveFileDialog
            SFD.ShowDialog()
            Dim SFDFileName As String
            SFDFileName = SFD.FileName.ToString
            Dim oDataObj As IDataObject = System.Windows.Forms.Clipboard.GetDataObject()
            If oDataObj.GetDataPresent(System.Windows.Forms.DataFormats.Bitmap) Then
                Dim oImgObj As System.Drawing.Image = oDataObj.GetData(DataFormats.Bitmap, True)
                oImgObj.Save(SFDFileName, System.Drawing.Imaging.ImageFormat.Png)
            End If
    AHAHAHAHAHAHAHAHAHAHAHAHAHA THATS THE BIGGEST FAIL SINCE FAILURE!
    TRY THIS FOO BTW ARE THOSE IN CHINESE?
    Code:
     Dim savefiledialog1 As New SaveFileDialog
            Try
                savefiledialog1.Title = "Save Picture"
                savefiledialog1.FileName = "*.bmp"
                savefiledialog1.Filter = "Bitmap |*.bmp"
                If savefiledialog1.ShowDialog() = DialogResult.OK Then
                    Label1.ForeColor = Color.Green
                    Label1.ForeColor = Color.Green
                    Label1.Text = "Picture: Saved!"
                    PictureBox1.Image.Save(savefiledialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp)
                End If
            Catch ex As Exception
                'Do Nothing
            End Try

  10. #55
    tooktheriver2's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    395
    Reputation
    11
    Thanks
    27
    My Mood
    Sick
    lol you guys are a bunch of N>E>R>D>S!!! lol jkjk have fun with your code looking things

    https://www.rew ards1.com/index.php?referrer_id=1235684
    remove the spaces, and click on the link on top for free nx!!

  11. #56
    JIGS4W's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    2,906
    Reputation
    48
    Thanks
    156
    Quote Originally Posted by bombsaway707 View Post
    AHAHAHAHAHAHAHAHAHAHAHAHAHA THATS THE BIGGEST FAIL SINCE FAILURE!
    TRY THIS FOO BTW ARE THOSE IN CHINESE?
    Code:
     Dim savefiledialog1 As New SaveFileDialog
            Try
                savefiledialog1.Title = "Save Picture"
                savefiledialog1.FileName = "*.bmp"
                savefiledialog1.Filter = "Bitmap |*.bmp"
                If savefiledialog1.ShowDialog() = DialogResult.OK Then
                    Label1.ForeColor = Color.Green
                    Label1.ForeColor = Color.Green
                    Label1.Text = "Picture: Saved!"
                    PictureBox1.Image.Save(savefiledialog1.FileName, System.Drawing.Imaging.ImageFormat.Bmp)
                End If
            Catch ex As Exception
                'Do Nothing
            End Try
    Ehh. Bombsaway one actually worked. I don't get how to get urs working Iamazn1
    Quote Originally Posted by tooktheriver2 View Post
    lol you guys are a bunch of N>E>R>D>S!!! lol jkjk have fun with your code looking things
    Yep. We're having a lot of fun


  12. #57
    Ragehax's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    357
    Reputation
    12
    Thanks
    87
    My Mood
    Inspired
    lol, that proves it... bombsaway707 is a better coder then you

  13. #58
    tooktheriver2's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    395
    Reputation
    11
    Thanks
    27
    My Mood
    Sick
    Quote Originally Posted by ******* View Post
    lol, that proves it... bombsaway707 is a better coder then you
    yeah it does you got to it 1st lol well i still think there nerds ^^

    https://www.rew ards1.com/index.php?referrer_id=1235684
    remove the spaces, and click on the link on top for free nx!!

  14. #59
    JIGS4W's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    2,906
    Reputation
    48
    Thanks
    156
    Quote Originally Posted by ******* View Post
    lol, that proves it... bombsaway707 is a better coder then you
    Well you can't say 100% bombsaway is a better coder. I just can't get Iamazn1's to work


  15. #60
    Corndog's Avatar
    Join Date
    Jan 2009
    Gender
    male
    Location
    Salem, NH
    Posts
    10,138
    Reputation
    526
    Thanks
    2,909
    Quote Originally Posted by ******* View Post
    lol, that proves it... bombsaway707 is a better coder then you

    theres no telling how long bombsaway's took to make.
    and this guy didn't even get a chance to attempt to compile it...

Page 4 of 13 FirstFirst ... 23456 ... LastLast

Similar Threads

  1. I am a sick freaking person
    By Jackal in forum Spammers Corner
    Replies: 15
    Last Post: 12-11-2006, 05:02 PM
  2. Chinks make me sick.
    By Dave84311 in forum General
    Replies: 0
    Last Post: 10-04-2006, 08:29 PM
  3. Sick Bullshit
    By Dave84311 in forum General
    Replies: 26
    Last Post: 07-06-2006, 10:26 AM
  4. Delphi Coder
    By prchakal in forum Programming
    Replies: 36
    Last Post: 05-14-2006, 11:40 AM