Search found 340 matches

by kyuuuri
29 Jul 2020, 05:56
Forum: Ask for Help
Topic: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved
Replies: 29
Views: 17884

Re: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved

@HotKeyIt What is a good key length if I want to be as secure as possible? I'm using separate math algorithms for alternating characters and booleans to help diversify the password. Can you give me an example of how long I should make my password if I want it really secure? Edit: Right now I'm thin...
by kyuuuri
28 Jun 2020, 10:49
Forum: Ask for Help
Topic: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved
Replies: 8
Views: 5631

Re: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved

guest3456 wrote:
28 Jun 2020, 10:42
if you recompile with the latest AHK_H from github, you'll get an extra line in the error msgbox which points to the code that is causing it
Oh I didn't know that, that's very useful. Thank you for that, I will update asap.
by kyuuuri
28 Jun 2020, 09:47
Forum: Ask for Help
Topic: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved
Replies: 8
Views: 5631

Re: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved

Found it! here it is: #WarnContinuableException Off
by kyuuuri
28 Jun 2020, 09:46
Forum: Ask for Help
Topic: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved
Replies: 8
Views: 5631

Re: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved

I solved the issue, this code works if the file is placed in a different directory it does a soft run that just exits the app, the reason this didn't work before was because I had a try catch statement that was formatted incorrectly, if anyone has this issue in the future you can use this in auto e...
by kyuuuri
27 Jun 2020, 20:36
Forum: Ask for Help
Topic: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved
Replies: 8
Views: 5631

Re: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved

If it's caused by your AV then add the file to exceptions. Doesn't seem to be a bug in ahk and disabling those errors is not a "fix". If you still want to disable them then I think there was a way, try checking the docs.
by kyuuuri
24 May 2020, 15:37
Forum: AutoHotkey_H
Topic: [Guide] Compiling Ahk_h's source step by step Topic is solved
Replies: 51
Views: 49956

Re: [Guide] Compiling Ahk_h's source step by step Topic is solved

Okay, I did that. I'm Having an issue. I compiled my source and changed the password: 1st Reference(g_default_pwd) : TCHAR *g_default_pwd[] = { &g_default_pwd0, &g_default_pwd1, &g_default_pwd2, &g_default_pwd3, &g_default_pwd4, &g_default_pwd5, &g_default_pwd6, &g_default_pwd7, &g_default_pwd8, &g...
by kyuuuri
22 May 2020, 15:43
Forum: AutoHotkey_H
Topic: [Guide] Compiling Ahk_h's source step by step Topic is solved
Replies: 51
Views: 49956

Re: [Guide] Compiling Ahk_h's source step by step Topic is solved

Hmm now that I double checked the image, it seems that I did a bad edit hahha. You should have these for each version (x64, x32, mbcs):
Release
ReleaseDllMini
ReleaseDll
Self-contained

MT_Release
MT_ReleaseDllMini
MT_ReleaseDll
MT_Self-contained
by kyuuuri
21 May 2020, 22:49
Forum: AutoHotkey_H
Topic: [Guide] Compiling Ahk_h's source step by step Topic is solved
Replies: 51
Views: 49956

Re: [Guide] Compiling Ahk_h's source step by step Topic is solved

Hmm, they should be there unless HotKeyIt removed those. Can you send an screenshot of the options you have?
by kyuuuri
20 May 2020, 15:01
Forum: Ask for Help
Topic: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved
Replies: 29
Views: 17884

Re: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved

Hello! I would like to make a different password for each of my users. I feel AHK_H is the best method to achieve this. In order to do this I will need to create separate compiled autohotkey_h folders for each individual person correct? Is there a function I can use for getting slightly more random...
by kyuuuri
12 May 2020, 15:01
Forum: Ask for Help (v1)
Topic: Create an HBitmap with transparency Topic is solved
Replies: 32
Views: 4278

Re: Create an HBitmap with transparency Topic is solved

Perhaps you want something like this: colorWithoutTransparency := 0xC0C0C0 colorWithTransparency := 0x55F000FF width := 200 height := 200 Gui, Color, FAD886 Gui, Margin, 0, 0 Gui, Add, Pic,, % "HBITMAP:" . CreateColoredBitmap(width, height, colorWithoutTransparency) Gui, Add, Pic, x100 y100 Backgro...
by kyuuuri
12 May 2020, 12:31
Forum: Ask for Help (v1)
Topic: Create an HBitmap with transparency Topic is solved
Replies: 32
Views: 4278

Re: Create an HBitmap with transparency Topic is solved

For win10, the transparency of child elements is supported. Gdip not required. For win7 unsupported, so inserting in control will still not give anything. BckgMain = F000FF Gui, Color, FAD886 Gui, Margin, 0, 0 Gui, Add, Progress, x111 y111 w222 h222 BackgroundC0C0C0 Gui, Add, Progress, x0 y0 w222 h...
by kyuuuri
12 May 2020, 10:51
Forum: Scripts and Functions (v1)
Topic: Gdip_CreateBitmapFromHBITMAP() with transparency.
Replies: 13
Views: 7227

Re: Gdip_CreateBitmapFromHBITMAP() with transparency.

Sorry for reviving this topic iseahound , how would you do it for this case: https://www.autohotkey.com/boards/viewtopic.php?f=76&t=75845 . I'm trying to create a simple semi-transparent black hbitmap to use it on a picture control. Not using any file. I think what I need is to copy the pixels from ...
by kyuuuri
12 May 2020, 10:47
Forum: Ask for Help (v1)
Topic: Create an HBitmap with transparency Topic is solved
Replies: 32
Views: 4278

Create an HBitmap with transparency Topic is solved

Hello, I'm trying to create a simple HBitmap (to be used in a Picture control) that only has a background with transparency. The idea is to use it to overlay some controls I have that are going to be disabled. I tried the following code: pBitmap := Gdip_CreateBitmap(400, 400) hBackground := Gdip_Cre...
by kyuuuri
04 May 2020, 05:07
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7764

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

doesnt really explain what the problem was. what about this software was causing ahk_h to fail? also, what are these LoadLibrary bugs ure talking about? It was caused by a sound enhancement software called: Nahimic https://www.nahimic.com/ @HotKeyIt spent hours on this so we should all thank him fo...
by kyuuuri
03 May 2020, 19:25
Forum: AutoHotkey_H
Topic: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved
Replies: 26
Views: 7764

Re: Ahk_h freezes when trying to launch a new Thread on w10 Home 1903 Topic is solved

It was caused by a sound enhancement software called: Nahimic https://www.nahimic.com/ HotKeyIt spent hours on this so we should all thank him for this!. Apparently this software is preinstalled on dell machines with msi motherboards and one of its components (Alienware Sound Center) messes with ahk...
by kyuuuri
03 May 2020, 19:01
Forum: Ask for Help (v1)
Topic: Is there any way to use ahk to interact with Razer Synapse's driver?
Replies: 1
Views: 514

Is there any way to use ahk to interact with Razer Synapse's driver?

Hello, as title says I was wondering if it's possible for ahk to interact with drivers like Razer Synapse or Logitech, and such.
If it is, where should I start?

Thanks in advance.
by kyuuuri
02 May 2020, 13:39
Forum: Bug Reports
Topic: Confirmed bug with #if and Hotkey, If Topic is solved
Replies: 10
Views: 2774

Re: Confirmed bug with #if and Hotkey, If Topic is solved

the hotkey runs only when the condition is satisfied. WinActive and WinExist return the hwnd of the found window. at some point in time, for some reason, this hwnd(example: L"0x1e32ce" ) ends up in sDerefBuf (see ballpark ) as the udf sendKey_f is just about to begin execution(see further below, ca...
by kyuuuri
02 May 2020, 06:10
Forum: Scripts and Functions (v1)
Topic: MCode4GCC -- C/C++ to MCode Generator
Replies: 121
Views: 53847

Re: MCode4GCC -- C/C++ to MCode Generator

Hello, can a DllCall be converted? Like a dllcall to postmessage, or sendinput
by kyuuuri
01 May 2020, 20:42
Forum: Bug Reports
Topic: Confirmed bug with #if and Hotkey, If Topic is solved
Replies: 10
Views: 2774

Re: Confirmed bug with #if and Hotkey, If Topic is solved

I have a few questions: Why are you forcing Global inside of a function that doesn't need global? Is there a particular reason why are you using SendEvent versus something else? Why do you have a function dedicated to returning whether notepad++ is active? Why not just put the WinActive call on the...
by kyuuuri
01 May 2020, 17:03
Forum: Bug Reports
Topic: Confirmed bug with #if and Hotkey, If Topic is solved
Replies: 10
Views: 2774

Confirmed bug with #if and Hotkey, If Topic is solved

Introduction Hello, when using #if or Hotkey, If in combination with a function that sends a key, you get weird stuff being sent. #NoEnv #installkeybdhook #installmousehook #MaxHotkeysPerInterval 99000000 #HotkeyInterval 99000000 #MaxThreadsPerHotkey 2 #KeyHistory 0 ListLines Off SetBatchLines, -1 ...

Go to advanced search