Search found 565 matches

by DRocks
23 Oct 2019, 06:34
Forum: Ask for Help (v1)
Topic: How to activate the desired window if both windows have the same ahk_class? Topic is solved
Replies: 4
Views: 631

Re: How to activate the desired window if both windows have the same ahk_class? Topic is solved

Maybe consider RegEx SetTitleMatchMode and use a RegEx WinTitle plus the ahk_class ?
by DRocks
22 Oct 2019, 23:25
Forum: Ask for Help (v1)
Topic: [SOLVED] Add Auto-completion for non-AHK ComboBox with a AHK script ? Topic is solved
Replies: 14
Views: 2741

Re: Simulate a ahk ComboBox gLabel for a non-AHK ComboBox? Topic is solved

Hey hellbent

Thanj you very much for the help. I was just editting my post and when done you had a reply :D

Ill be off sleeping but will surely try that when i wake up.

Thanks a lot, ill get back to this thread for updates.
Have a gn
by DRocks
22 Oct 2019, 10:26
Forum: Ask for Help (v1)
Topic: [SOLVED] Add Auto-completion for non-AHK ComboBox with a AHK script ? Topic is solved
Replies: 14
Views: 2741

[SOLVED] Add Auto-completion for non-AHK ComboBox with a AHK script ? Topic is solved

EDIT: Topic solved see selected answer and my last post for reference. Hello, I want to add auto-completion to a non-AHK regular win32 ComboBox control with my AHK script. Can you listen to the other software's ComboBox text input changes within a ahk script like a Gui control gLabel would do ? In ...
by DRocks
21 Oct 2019, 13:52
Forum: Scripts and Functions (v1)
Topic: Simple Window Manager (save and recall positions)
Replies: 2
Views: 4690

Simple Window Manager (save and recall positions)

Here's a simple Window Manager script that helps me saving and recalling window positions using a separate file per computer name so you can have different setups. How it works in short: 1. Quickly add new window titles using RegEx versatility 2. Reposition or update positions of window matching you...
by DRocks
19 Oct 2019, 22:42
Forum: Ask for Help (v1)
Topic: WinMove for files Explorer
Replies: 6
Views: 2298

Re: WinMove for files Explorer

Thank you very much for your reply @lexikos this makes sense now and I understand why I was getting errors. Have a good day

EDIT: tested and this works perfectly as you said:
[i)Data ahk_class i)CabinetWClass ahk_exe i)Explorer.EXE]
x=440
y=69
w=1044
h=603
MinMax=0
by DRocks
19 Oct 2019, 08:40
Forum: Ask for Help (v1)
Topic: WinMove for files Explorer
Replies: 6
Views: 2298

Re: WinMove for files Explorer

EDIT: I found a answer to my problem at the end of my post. Hello, I've come across the same problem and I wanted to ask if any one knows why being more specific as Lexikos stated does not work in this situation: I am identifying the Data folder name adding both ahk_class CabinetWClass and ahk_exe ...
by DRocks
18 Oct 2019, 04:01
Forum: Ask for Help (v1)
Topic: Include scripts via url?
Replies: 16
Views: 2066

Re: Include scripts via url?

Could you simply store your files on a cloud drive and run that? I am asking just in case your scenario could benefit from it and you didnt think of it. For example: having OneDrive folder that sync between one or more of your computers can solve an issue like that quite easily. But it might be impr...
by DRocks
16 Oct 2019, 13:25
Forum: Scripts and Functions (v1)
Topic: [Class] SQLiteDB - Update on 2022-10-04
Replies: 303
Views: 205982

Re: [Class] SQLiteDB - Update on 2019-07-12

nice feature, thank you!
by DRocks
16 Oct 2019, 07:01
Forum: Scripts and Functions (v1)
Topic: [Class] SQLiteDB - Update on 2022-10-04
Replies: 303
Views: 205982

Re: [Class] SQLiteDB - Update on 2019-07-12

Thanks for the class! 1 year later with more AHK knowledge I can finally understand enough to follow along the example, this is great stuff good job. Here's the simplest example I made following your default example. I basically just used the class functions without including the AHK Gui stuff. #NoE...
by DRocks
15 Oct 2019, 21:28
Forum: Ask for Help (v1)
Topic: How to save safearray to excel?
Replies: 12
Views: 3286

Re: How to save safearray to excel?

I've been trying to implement Excel COM with Sinkfaze tips. The issue I wanted to solve is this: We get client's Excel files with about 15 different sheets. Each of these sheets have a particular column naming order which clients choose to their likings. I want to retrieve a row data and convert it ...
by DRocks
14 Oct 2019, 08:02
Forum: Scripts and Functions (v1)
Topic: [Tool] Clipboard Master v2
Replies: 9
Views: 6420

Re: [Tool] Clipboard Master v2

That gui is awesome
by DRocks
07 Oct 2019, 15:35
Forum: Scripts and Functions (v1)
Topic: CNG (Cryptography API: Next Generation)
Replies: 101
Views: 64674

Re: CNG (Cryptography API: Next Generation)

In JNizm's there's no confusion about this, I am sorry I mistakenly interpreted it was his class but I am actually using another person's encryption class and there is this wierd concept which I quote here: Crypt.Encrypt.StrEncrypt(string,password,CryptAlg = 1, HashAlg = 1) Encrypts the string Param...
by DRocks
06 Oct 2019, 19:04
Forum: Scripts and Functions (v1)
Topic: CNG (Cryptography API: Next Generation)
Replies: 101
Views: 64674

Re: CNG (Cryptography API: Next Generation)

Hey guys thanks for your replies. I have spent the day on this topic and indeed after a while I came to what you said TheHacker . jeeswg this is interesting as its a completly different way of using hashes and I didnt know about that. So if i get it, the source (if not salted), would always be the s...
by DRocks
06 Oct 2019, 08:52
Forum: Scripts and Functions (v1)
Topic: CNG (Cryptography API: Next Generation)
Replies: 101
Views: 64674

Re: CNG (Cryptography API: Next Generation)

Hey this is VERY nice and wanted to say thanks!! How are you supposed to use a hash? lets say i do this: ; pbkdf2(Password, Salt, AlgID , Iterations, KeySize) Clipboard:=bcrypt.pbkdf2("alexandreD7", "salt", "SHA256", 4096 , 32) ; ==> dc00a73bc4a27f794dbca49c5870498e53e7e8489728c7888045ddd88e7330c2 A...
by DRocks
06 Oct 2019, 07:50
Forum: General Discussion
Topic: crack my Id and password challenge
Replies: 0
Views: 1600

crack my Id and password challenge

Hey guys, I've been messing with encryption to be able to deal with this kind of thing a little bit by myself so I've followed my instinct first and ended with what is close to a String XOR encryption model. I then looked up about XOR encryption and followed someone elses model. My question is simpl...
by DRocks
05 Oct 2019, 09:43
Forum: Ask for Help (v1)
Topic: DllCall - SetWindowsHookEx - WH_SHELL
Replies: 6
Views: 2508

Re: DllCall - SetWindowsHookEx - WH_SHELL

I read through most it and it looks to be perfect !
Ill try it out. Thanks again @teadrinker - very nice of you
by DRocks
04 Oct 2019, 14:23
Forum: Ask for Help (v1)
Topic: DllCall - SetWindowsHookEx - WH_SHELL
Replies: 6
Views: 2508

Re: DllCall - SetWindowsHookEx - OnWH_SHELL

teadrinker wrote:
04 Oct 2019, 13:42
hehe :D
the so awesome c++ (wish I would know that language)
Thanks for the help! it is already like 50% more efficient with your addition :D
by DRocks
04 Oct 2019, 12:16
Forum: Ask for Help (v1)
Topic: DllCall - SetWindowsHookEx - WH_SHELL
Replies: 6
Views: 2508

Re: DllCall - SetWindowsHookEx - OnWH_SHELL

300+ callbacks won't happen, if you write the code properly. For example, MsgBox will appear only if the Notepad window is created: Hey @teadrinker Thank you very much for your reply. This has indeed helped reduce the number of callbacks that passthrough the "returns" Thank you very much. Side ques...
by DRocks
04 Oct 2019, 08:00
Forum: Ask for Help (v1)
Topic: DllCall - SetWindowsHookEx - WH_SHELL
Replies: 6
Views: 2508

DllCall - SetWindowsHookEx - WH_SHELL

Hey I'm trying to replace the " SetWinEventHook " DllCall for " SetWindowsHookEx " to only register Top Window Creation events. Reason: I want to create a child GUI on top of a third party software with AHK. How I am currently doing it is with the SetWinEventHook that looks for EVENT_OBJECT_CREATE b...

Go to advanced search