Yes it's for CA I enable the checkbox fine as soon as i go to reload CA crashes :\
The addie is no reload btw
Cheers Jàzzà
[php]CAHack.Nop(&H374B4594,6)[/php]
Should work...
Posts 1–15 of 16 · Page 1 of 2
Post a Reply
Tags for this Thread
None
Originally Posted by Blubb1337
[php]CAHack.Nop(&H374B4594,6)[/php]
Should work...
EDIT:
I get Access is denied on my 33bit machine
But on my 64bit machine i get no error just CA crashes :|
I also did the "try" function and catched the error but it came up with a whole lot of code, that wasn't necessary
Run VB2010 as admin?
Originally Posted by master131
Run VB2010 as admin?
You don't have to, and apparently by what acid_buRn said, that CA deosnt allow access memeory via external programs :\
If your running on Vista or 7 , your application DOES require escalation
I can't speak much to CA, but I can tell you how your OS works
The address you're trying to write to may be in a page with some access rights that you may have to change the write anything.
Use VirtualProtectEx, set the access rights of that page to PAGE_EXECUTE_READWRITE.
I haven't seen that namespace before |:
Originally Posted by freedompeace
I haven't seen that namespace before |:
It's part of Windows API...
[php]
Declare Function VirtualProtectEx Lib "kernel32.dll" (ByVal hProcess As IntPtr, ByVal lpAddress As IntPtr, ByVal dwSize As IntPtr, ByVal newProtect As Integer, ByRef oldProtect As Integer) As Boolean
[/php]
You can remove protections before allocating memory using PAGE_EXECUTE_READWRITE.
I seriously Recommended everyone here takes some time to look into all the platform Invokes.
Okays Ill see how I go, I delt this project will be of any success, but i'll try (:
Originally Posted by NextGen1
It's part of Windows API...
[php]
Declare Function VirtualProtectEx Lib "kernel32.dll" (ByVal hProcess As IntPtr, ByVal lpAddress As IntPtr, ByVal dwSize As IntPtr, ByVal newProtect As Integer, ByRef oldProtect As Integer) As Boolean
[/php]
You can remove protections before allocating memory using PAGE_EXECUTE_READWRITE.
I seriously Recommended everyone here takes some time to look into all the platform Invokes.