C# Dll injector, VB.Net Dll injector -
i had made dll injector easy before, had windows 7, made in c# , c++, worked great! when try same codes in windows 8, seems doesn't inject dll in right way! :) dll not working... (the code i'm trying public 1 <) vb.net code: private targetprocesshandle integer private pfnstartaddr integer private pszlibfileremote string private targetbuffersize integer public const process_vm_read = &h10 public const th32cs_snapprocess = &h2 public const mem_commit = 4096 public const page_readwrite = 4 public const process_create_thread = (&h2) public const process_vm_operation = (&h8) public const process_vm_write = (&h20) dim dllfilename string public declare function readprocessmemory lib "kernel32" ( _ byval hprocess integer, _ byval lpbaseaddress integer, _ byval lpbuffer string, _ byval nsize integer, _ byref lpnumberofbyteswritten integer) integer public declare function loadlibrary lib "kernel32" alias "loadlibrarya" ( ...