Jump to content

DrH

Members
  • Posts

    17
  • Joined

  • Last visited

DrH's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Calm down both of you ! Each one of you want just to give me some help,maybe trancexx was a little bit hard on you ,but shes just trying to give me some help ! E1M1 ,in the c++ source ,i want to use sprintf and strcat not returning a string like you did! Again trancexx just wanted to help she didnt mean it ! Thank you fellas i appreciate !
  2. I readed about it but i didnt understood !
  3. Done ! Thank you,you're helpful !
  4. Not working,but thanks !
  5. When i use ptr it returns in $hRet[0] = a pointer,when i use str it returns an invalid char ! - How to read that memory address ? Thanks in advance !
  6. Im using C++ 32,default options in codeblocks !
  7. It returns an invalid char "",btw,i use codeblocks with "GNU GCC Compiler",any recommendation ? Thanks for your help !
  8. I made a dll in c++ that return a string,but,when i use dllcall it returns in pointer,i dont know if its Autoit problem or dll ! Please help ! C++ Function: char* samplefunction() { char* str1 = "Hello"; char* str2 = "bye"; char result[strlen(str1) + strlen(str2) + 2]; sprintf(result,"%s-%s",str1,str2); return (char*)result; } Autoit Function $hRet = DllCall('test.dll',"ptr","samplefunction") MessageBox(0,"Test","Return : "&$hRet[0]) The dll is successfully built and function is executed except it doesnt return a string. Thanks in advance ! test.rar
  9. Thank you PsaktyDS,I use new ChildWindowFromPoint.Thank You AGAIN !
  10. I want to find a control in a gui using x y position ,for exemple : findcontrol($handleofgui,$x,$y) and return control handle Thank You
  11. Heil Guys I need some help to hook RegCreateKeyEx and RegSetValueEx to notify new created/changed registry keys. Thank you for advance,I realy need it.
  12. Hi guys i want to hook RegCreateKeyEx and RegSetValueEx to notify new created keys, help me please i need this code. im using : http://www.autoitscript.com/forum/index.php?app=core&module=attach&section=attach&attach_id=23366 Thanks in advance !
  13. not contextmenu for gui,i want a context menu like file association,read the msdn forum!
  14. Hi guys i want to create a context menu handler dll,i found this : http://msdn.microsoft.com/en-us/library/bb776881%28v=vs.85%29.aspx ,but i dont inderstand anything please,can some one help me to create that dll. Thanks in advance !
  15. Hi, I want to make a persistent process by injecting an Asm code into process using WriteProcessMemory..., like this thread (remote messabox) : Thankx in advance !
×
×
  • Create New...