Sorry for posting too much..but I need help.
I finished working on my v2 injector, and I need to debug it again. But whenever I try and debug it, this comes up and I can't debug..
The first v1 debug went perfect.
I've read the errors, ofc, and it says all the things I've put are not valid (?), and I was like wtf. I didn't even change ANY codes, all I did was just change the overall design, like fonts, background, etc. I DID add some other things I said I will add which requires some coding.
So any solution to this?
Originally Posted by leopoldo614
Sorry for posting too much..but I need help.
I finished working on my v2 injector, and I need to debug it again. But whenever I try and debug it, this comes up and I can't debug..
The first v1 debug went perfect.
I've read the errors, ofc, and it says all the things I've put are not valid (?), and I was like wtf. I didn't even change ANY codes, all I did was just change the overall design, like fonts, background, etc. I DID add some other things I said I will add which requires some coding.
So any solution to this?
The problem here is that your textbox does not have the name "TextBox1" but your code does. Either rename your text box to "TextBox1" or change the code to the name of your textbox. Hope this helps!
The problem here is that your textbox does not have the name "TextBox1" but your code does. Either rename your text box to "TextBox1" or change the code to the name of your textbox. Hope this helps!
alright thanks I'll try that..hope it works
---------- Post added at 03:35 PM ---------- Previous post was at 03:30 PM ----------
alright now my errors are down to 6...I've fixed the "textbox1" error.
Now I'm having trouble with the last 6..I've looked at the code but the code is saying something different..not related to my subjects.?
---------- Post added at 03:36 PM ---------- Previous post was at 03:35 PM ----------
EDIT: And I don't even have checkbox1...do I just delete the whole code for it?
Originally Posted by leopoldo614
alright thanks I'll try that..hope it works
---------- Post added at 03:35 PM ---------- Previous post was at 03:30 PM ----------
alright now my errors are down to 6...I've fixed the "textbox1" error.
Now I'm having trouble with the last 6..I've looked at the code but the code is saying something different..not related to my subjects.?
---------- Post added at 03:36 PM ---------- Previous post was at 03:35 PM ----------
EDIT: And I don't even have checkbox1...do I just delete the whole code for it?
You need to rename you listbox to DLLs and your checkbox to checkbox1. Just keep renaming them and the error will go away.
Originally Posted by ryakhawk
You need to rename you listbox to DLLs and your checkbox to checkbox1. Just keep renaming them and the error will go away.
okay thanks but I don't have checkbox?
Originally Posted by leopoldo614
okay thanks but I don't have checkbox?
Well you need the checkbox if it is in your code and you dont want to change the code. just make a checkbox called checkbox1
Originally Posted by ryakhawk
Well you need the checkbox if it is in your code and you dont want to change the code. just make a checkbox called checkbox1
okay now I get it. I found checkbox1 in my code. And you said change it to checkbox1, but it's already in that form?
If you get what I mean..
Originally Posted by leopoldo614
okay now I get it. I found checkbox1 in my code. And you said change it to checkbox1, but it's already in that form?
If you get what I mean..
You need to have a checkbox1 if it is in your coding. Make a checkbox.
PM me your whole source and I will fix & highlight& comment my changes so you can learn from it.
Originally Posted by rkN
PM me your whole source and I will fix & highlight& comment my changes so you can learn from it.
Doing it for him doesnt help him learn...
Originally Posted by ryakhawk
Doing it for him doesnt help him learn...
I said i would comment and highlight the code and explain in detail :/
I kind of feel insecure to just send all my code..I'm learning some C++ so it's okay. Thanks for your support anyways.
@ryakhawk so all I do is just put checkbox, then do I have to code it to something, or just leave it uncoded? Because I seriously have no use for checkbox right now.
Originally Posted by leopoldo614
I kind of feel insecure to just send all my code..I'm learning some C++ so it's okay. Thanks for your support anyways.
@ryakhawk so all I do is just put checkbox, then do I have to code it to something, or just leave it uncoded? Because I seriously have no use for checkbox right now.
Well for an injector you usually have a checkbox for "Close after injection" if you dont need a checkbox though, simply delete the lines of code that have to do with checkbox's.
Code:
checkbox1.checked = true
then display message after injection.
Take out the checkbox1 lines of code. If you want a display message do
Code:
Inject
Then
Msgboxshow ("blah")
something like tht. Point is, if you dont want it, take it out of the code.
alright thanks so much man..you fixed my problem.
Minions close now.