Thread: 2Questions

Page 2 of 2 FirstFirst 12
Results 16 to 17 of 17
  1. #16
    atom0s's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    403
    Reputation
    139
    Thanks
    104
    Form.1 and Anti-KRA1.cpp are both managed code. They are Visual C++, not normal C++.

    As for why your DLL doesn't work, you have things like this:
    if(activated = false)

    Which are wrong. It should:
    if(activated == false)

    There are a few errors similar to that. Take the time to actually understand what you are doing rather than copy pasting from others threads.
    - Gone; this is another shit forum with children as administrators. Not worth contributing to.

  2. #17
    Frought's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Location
    In the dark island
    Posts
    3,403
    Reputation
    156
    Thanks
    5,980
    My Mood
    Cool
    Quote Originally Posted by atom0s View Post
    Form.1 and Anti-KRA1.cpp are both managed code. They are Visual C++, not normal C++.

    As for why your DLL doesn't work, you have things like this:
    if(activated = false)

    Which are wrong. It should:
    if(activated == false)

    There are a few errors similar to that. Take the time to actually understand what you are doing rather than copy pasting from others threads.
    I didn't copy and paste anything even search if you can , everything are actually made by me... and the == is syntax error , every one make a mistake o.o

Page 2 of 2 FirstFirst 12