Search found 147 matches

by whynotregister
18 Jan 2017, 13:56
Forum: Ask for Help
Topic: how to dll Inject Topic is solved
Replies: 26
Views: 20408

how to dll Inject Topic is solved

https://github.com/kevrgithub/autohotke ... ectDll.ahk

I tested it with the script in the link above, but it does not work.
Is there a simple way to do dll injection with ahk?
by whynotregister
16 Dec 2016, 20:17
Forum: Ask for Help (v1)
Topic: RegExReplace help please Topic is solved
Replies: 2
Views: 720

Re: RegExReplace help please Topic is solved

FanaticGuru wrote:If you are just looking to get rid of spaces of each side of a comma, this will do that:

Code: Select all

test := "apple,pear|apple, pear|apple ,pear|apple , pear|apple      ,      pear"
Result := RegExReplace(test,"\s*\,\s*",",")
MsgBox % Result
FG
thank you
by whynotregister
16 Dec 2016, 01:11
Forum: Ask for Help (v1)
Topic: RegExReplace help please Topic is solved
Replies: 2
Views: 720

RegExReplace help please Topic is solved

I want to ignor the position of commas and spaces and make the following changes: 1.txt = apple,pear|apple, pear|apple pear FileRead, test, 1.txt Comma: = "," Stringreplace, test, test, apple%comma%pear, apple%comma%pear, all Stringreplace, test, test, apple%comma% pear, apple%comma%pear, all String...
by whynotregister
09 Dec 2016, 20:52
Forum: Ask for Help (v1)
Topic: [Q & A] Processes / Threads / Handles / Modules
Replies: 11
Views: 3809

[Q & A] Processes / Threads / Handles / Modules

I was seeking information about the thread, and this post resolved it.
Thank you very much.
by whynotregister
05 Dec 2016, 23:07
Forum: Ask for Help (v1)
Topic: I want to change the command.
Replies: 3
Views: 806

Re: I want to change the command.

I don't know where it is in the source. However, maybe You could create your own MsgBox using DllCall? The tutorial about DllCall example is creating a new message box just like the command, so You could adapt it to your needs. Maybe creating a function off the inbuilt MsgBox will do as well? I wan...
by whynotregister
05 Dec 2016, 11:17
Forum: Ask for Help (v1)
Topic: I want to change the command.
Replies: 3
Views: 806

I want to change the command.

Can you tell which part of the source you need to modify to change the Auto Hotkey command?

ex) msgbox > wkejwkd
by whynotregister
09 Nov 2016, 13:26
Forum: Ask for Help (v1)
Topic: Hide variables
Replies: 1
Views: 701

Hide variables

Image

Can I hide variables from memory?
Is this difficult? If possible, please give me an example.

Go to advanced search