Search found 3040 matches

by jNizM
25 Jan 2023, 10:05
Forum: Ask for Help (v1)
Topic: Windows 11 Overflow
Replies: 15
Views: 1130

Re: Windows 11 Overflow

I linked teadrinker because that looks like his code. Maybe he can help you with that.
by jNizM
25 Jan 2023, 02:22
Forum: Ask for Help (v1)
Topic: Windows 11 Overflow
Replies: 15
Views: 1130

Re: Windows 11 Overflow

@teadrinker should be your code
by jNizM
25 Jan 2023, 01:53
Forum: Ask for Help (v2)
Topic: Converting Gui to v2 Topic is solved
Replies: 3
Views: 563

Re: Converting Gui to v2 Topic is solved

something like this: #Requires AutoHotkey v2.0 GuiRM := Gui() Loop 3 { PicGuiRM := GuiRM.Add("Picture", "Icon" A_Index, A_WinDir "\system32\shell32.dll") PicGuiRM.OnEvent("Click", Pic_Click) } GuiRM.Show() Pic_Click(GuiCtrlObj, *) { MsgBox "You clicked " GuiCtrlObj.Value } https://www.autohotkey.com...
by jNizM
23 Jan 2023, 05:53
Forum: Scripts and Functions (v2)
Topic: [FUNCTION][Modified from v1.1] Base64 encode/decode a string
Replies: 8
Views: 2039

Re: [FUNCTION][Modified from v1.1] Base64 encode/decode a string

Looks interesting, but for standard applications I prefer to let WinAPI calculate the required size itself.
If this parameter is NULL, the function calculates the length of the buffer needed and returns the size, in bytes, of required memory in the DWORD pointed to by pcbBinary.
by jNizM
23 Jan 2023, 03:24
Forum: Wish List
Topic: [V2 Wish:] Is there any reason that calling f(x*,y*) cannot be supported?
Replies: 8
Views: 1597

Re: [V2 Wish:] Is there any reason that f(x*,y*) cannot be supported?

You can already do something similar. Just pass an array.

Code: Select all

#Requires AutoHotkey v2.0

f([1, 2, 3], 4, 5, 6, 7, 8, 9)

f(x, a, c, y*)
{
	loop x.Length
		MsgBox A_Index

	MsgBox a
	MsgBox c

	for i, p in y
		MsgBox p
}
by jNizM
20 Jan 2023, 02:23
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1396057

Re: « What's on your mind? » Topic is solved

Thanks looks good so far.
Maybe one more suggestion: The Table Header in Bold
by jNizM
19 Jan 2023, 06:10
Forum: Ask for Help (v1)
Topic: GDI+ Text Border / Bubble
Replies: 15
Views: 1571

Re: GDI+ Text Border / Bubble

It is a bit different than just use GdiplusStartup.
Take a look at this: viewtopic.php?p=48392#p48392
by jNizM
19 Jan 2023, 05:29
Forum: Ask for Help (v1)
Topic: GDI+ Text Border / Bubble
Replies: 15
Views: 1571

Re: GDI+ Text Border / Bubble

Here is what my script does, I'd like to speed this up 5-10x if possible, or have any function that can do this fast. Not 5-10x and not sure if this is still relevant in the current version of AutoHotkey, but check this out. -> https://www.autohotkey.com/board/topic/90266-funktionen-loadlibrary-fre...
by jNizM
19 Jan 2023, 01:48
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4894
Views: 1396057

Re: « What's on your mind? » Topic is solved

Thanks @joedf .
- Can the size be adjusted to the maximum input so that the table is not the same size as the full browser resolution?
- And a space before the left aligned text?
- Maybe the Table Heahder also left aligned.
by jNizM
18 Jan 2023, 13:34
Forum: Ask for Help (v1)
Topic: Net connections
Replies: 1
Views: 232

Re: Net connections

by jNizM
18 Jan 2023, 03:25
Forum: Scripts and Functions (v2)
Topic: [Func] DNSQuery
Replies: 0
Views: 342

[Func] DNSQuery

DNSQuery Retrieves the Resource Record (RR) depends on DNS Record Type. No check for incorrect input of the "Name" parameter. Working examples below. Source DNSQuery.ahk (GitHub) Supported DNS types Constant / Value Description A An A record type, used for storing an IP address NS An authoritative ...
by jNizM
18 Jan 2023, 03:20
Forum: Scripts and Functions (v2)
Topic: [FUNCTION][Modified from v1.1] Base64 encode/decode a string
Replies: 8
Views: 2039

Re: [FUNCTION][Modified from v1.1] Base64 encode/decode a string

I want to find a v2 function for Base64 en-/decoding, but there doesn't seem to be one. Here is one (of many v2 in forum): https://www.autohotkey.com/boards/viewtopic.php?f=83&t=89720 I know I have seen some others here on the forum already (especially v2 ask-for-help too). But anyway thanks for th...
by jNizM
17 Jan 2023, 07:09
Forum: Scripts and Functions (v1)
Topic: Dip Switch Calculator
Replies: 7
Views: 1142

Re: Dip Switch Calculator

You could use GitHub.
by jNizM
13 Jan 2023, 05:39
Forum: Scripts and Functions (v2)
Topic: Collection of useful AutoHotkey v2 scripts and functions
Replies: 8
Views: 10725

Re: My Collection of useful AutoHotkey v2 scripts and functions

Update:
- v2.0.2 checks
- Added GetProcessThreads
- Added GetModuleBaseAddr
- Added GetThreadStartAddr
by jNizM
09 Jan 2023, 04:26
Forum: Ask for Help (v2)
Topic: How can I see the Handles of a process?
Replies: 5
Views: 840

Re: How can I see the Handles of a process?

Maybe there are still some permission problems, because not all names could be resolved. Or I have forgotten something. #Requires AutoHotkey v2.0 #DllLoad "advapi32.dll" #DllLoad "ntdll.dll" ProcessID := 5064 Main := Gui() LV := Main.AddListView("xm ym w800 r30", ["Handle", "Type", "Name", "Path"]) ...
by jNizM
09 Jan 2023, 02:28
Forum: Ask for Help (v2)
Topic: How can I see the Handles of a process?
Replies: 5
Views: 840

Re: How can I see the Handles of a process?

There is no AHK command for this.
Here is a v1 version to get process handles -> viewtopic.php?p=96242#p96242

If you need help to convert to v2, you can ask

Go to advanced search