Recent content by Vipervgts

  1. V

    C++ OpenGL, SDL 2.0 Error While Trying to Load PNG Files

    https://dl.dropboxusercontent.com/u/72958958/opengltextureerror.PNG
  2. V

    C++ OpenGL, SDL 2.0 Error While Trying to Load PNG Files

    I keep getting errors. Do you think you could give me a working basic png loader please? This is the only thing in my code that isn't working at the moment. I was able to successfully load bitmaps, but for some reason, I keep getting this reading violation when I try to load pngs.
  3. V

    C++ OpenGL, SDL 2.0 Error While Trying to Load PNG Files

    Every time I try to run my program, it gives me a reading violation when it reaches glTexImage2D. This is my code: unsigned int loadImage(string filename, bool alpha = true) { // You should probably use CSurface::OnLoad ... ;) //-- and make sure the Surface pointer is good! unsigned int id...
  4. V

    Decompile program confused with confuser?

    Can I please have a link to a confuser decompiler?
  5. V

    Decompile program confused with confuser?

    Hi. I lost my source code for one of my programs. I still have a build of it but it is confused. I was wondering if anyone could please tell me where I can get some sort of, "Unconfuser"? If someone can help me with this, I would greatly appreciate it. Thanks!
  6. V

    [VB.NET] Checking lines from a text file?

    I am trying to make this program that checks this online text file and sees if the user enters in a right serial into a text box from the text file and I want it so that all I have to do is put different serials on different lines in the text file and have the program check if the user enters in...
  7. V

    (VB.NET) Making my program generate an exe?

    I know its weird, but if anyone could help me i would really appreciate it.
  8. V

    (VB.NET) Making my program generate an exe?

    I'm trying to make somewhat of an email system. My idea is to have a screen open that asks for a email address and password for it then hit generate and have it generate an exe with a program in it that uses the email and pass to make it send and receive emails.
  9. V

    (VB.NET) Making my program generate an exe?

    I'm trying to make a program that you can customize, and have it generate an exe from it. For example, I want a program that has an email address textbox and an email password textbox, if you click the generate button, it will make an exe that has source code that will use the email and email...
  10. V

    Visual Basic Dropbox txt file help

    I'm trying to make a program that has a textbox and a button and make it so that when you press the button, it looks into a text file on dropbox, and reads it and if the textbox has the text that the text file has, make it trigger something. If somebody could please help me, I would really...
  11. V

    Help With Visual Basic Please

    I'm trying to make this login but I'm having some trouble. This is my code so far. I put this code into the login button: Private Sub loginbutton_Click(sender As Object, e As EventArgs) Handles loginbutton.Click 1 Dim InputUser As String 2 Dim InputPass As String 3...