Search found 165 matches

by TXShooter
17 Jul 2023, 18:17
Forum: Visual Studio Code
Topic: Quick tutorial for setting up VSCode for AHK
Replies: 16
Views: 21438

Re: Quick tutorial for setting up VSCode for AHK

Reviving.

How do we pass command line arguments in VSCode, either for testing or especially for debugging? Are instructions available for modifying the launch.json or creating a new one?
by TXShooter
18 Jan 2021, 09:14
Forum: Ask for Help (v1)
Topic: CDDBControl.dll and current AHK
Replies: 9
Views: 1408

Re: CDDBControl.dll and current AHK

https://autohotkey.com/board/topic/77513-modifying-mp3-file-comments/?p=497677 :?: cddbcontrol.dll needs to be downloaded and registered using (64Bit: C:\Windows\SysWOW64\... | 32Bit: C:\Windows\System32\...) regsvr32.exe I've done both but unfortunately the script creates an error: ---------------...
by TXShooter
16 Jan 2021, 16:57
Forum: Ask for Help (v1)
Topic: CDDBControl.dll and current AHK
Replies: 9
Views: 1408

CDDBControl.dll and current AHK

I'm wanting to simply encode ID3 metadata and found something that looks like it would work, but I'm not sure how to use it since the implementation of it was way-way-WAY long ago using methods supposedly embedded into AHK. Can anyone help me to understand what needs to happen to initialize and call...
by TXShooter
07 Jan 2021, 21:41
Forum: Ask for Help (v1)
Topic: Help: Encode/Decode makes Chinese Characters
Replies: 1
Views: 261

Help: Encode/Decode makes Chinese Characters

I'm needing some help in trying to figure out why my script isn't working like I thought it should. It's really a tester for a couple of subs, and I can't figure out where my fault lies. I'm just trying to encode a simple set of texts, writing them to a file and then reading them back before decodin...
by TXShooter
29 Nov 2020, 17:26
Forum: Ask for Help (v1)
Topic: ClassNN Keeps Changing on TextBox
Replies: 9
Views: 663

Re: ClassNN Keeps Changing on TextBox

Controls may have an additional internal identifier. You can get it using the following code: If you get unique constant values for DCID and identical handles displayed for HWND and HCTL you most probably can use this IDs. You need to pass the current HWND of the parent window and the control ID to...
by TXShooter
29 Nov 2020, 08:28
Forum: Ask for Help (v1)
Topic: ClassNN Keeps Changing on TextBox
Replies: 9
Views: 663

Re: ClassNN Keeps Changing on TextBox

Controls may have an additional internal identifier. You can get it using the following code: If you get unique constant values for DCID and identical handles displayed for HWND and HCTL you most probably can use this IDs. You need to pass the current HWND of the parent window and the control ID to...
by TXShooter
28 Nov 2020, 21:59
Forum: Ask for Help (v1)
Topic: ClassNN Keeps Changing on TextBox
Replies: 9
Views: 663

Re: ClassNN Keeps Changing on TextBox

WindowFromPoint has a single parameter, which is a POINT struct. Try it like this: DllCall("WindowFromPoint", int64, y << 32 | x) EditPath := DllCall("WindowFromPoint", int64, 102 << 32 | 77) ; Get control handle EditFile := DllCall("WindowFromPoint", int64, 128 << 32 | 77) ; Get control handle Con...
by TXShooter
28 Nov 2020, 18:44
Forum: Ask for Help (v1)
Topic: ClassNN Keeps Changing on TextBox
Replies: 9
Views: 663

Re: ClassNN Keeps Changing on TextBox

EditPath := DllCall("WindowFromPoint", Int,77, Int,102) ; Get control handle EditFile := DllCall("WindowFromPoint", Int,77, Int,128) ; Get control handle ControlSetText,, %reaperFolderName%, ahk_id %EditPath% ; Set Path ControlSetText,, %reaperFilename%, ahk_id %EditFile% ; Set Filename ControlGetT...
by TXShooter
28 Nov 2020, 15:26
Forum: Ask for Help (v1)
Topic: ClassNN Keeps Changing on TextBox
Replies: 9
Views: 663

ClassNN Keeps Changing on TextBox

I've ran my scripts on an older Win7 setup for a couple of years without much of a problem. Now I'm updating computers and am having an issue with the latest and greatest Win10... the ClassNN of a specific textbox keeps changing, and often times within a few seconds of each reading of that textbox. ...
by TXShooter
10 Jul 2020, 12:58
Forum: Ask for Help (v1)
Topic: A function for Char by Char examination?
Replies: 10
Views: 4655

Re: A function for Char by Char examination?

Thanks, @BoBo . Here's where my rabbit trail took me: [...] Well, what you are doing in your script is a default feature of AHK ... Will Loop, Parse work inside another Loop, Parse? In my original script, I'm first searching for delimiters of `,%A_Space%:-; Loop, Parse, CellOpen_Verse, `,%A_Space%:...
by TXShooter
10 Jul 2020, 11:36
Forum: Ask for Help (v1)
Topic: A function for Char by Char examination?
Replies: 10
Views: 4655

Re: A function for Char by Char examination?

string := "Test String with delimiters such as commas, and semicolons; make this work." Loop, Parse, string ; ... character by character. Msgbox, , GetChar Output, % "Character " A_LoopField " found at position " A_Index ; while A_LoopField + A_Index deliver the expected values. "If this parameter ...
by TXShooter
10 Jul 2020, 11:30
Forum: Ask for Help (v1)
Topic: A function for Char by Char examination?
Replies: 10
Views: 4655

Re: A function for Char by Char examination?

Chunjee wrote:
10 Jul 2020, 11:14
GetChar(data,location) makes more sense to me, but yeah that is good too :thumbup:
Good point. Thank you.
by TXShooter
10 Jul 2020, 10:52
Forum: Ask for Help (v1)
Topic: A function for Char by Char examination?
Replies: 10
Views: 4655

Re: A function for Char by Char examination?

Thanks, BoBo . Here's where my rabbit trail took me: string := "Test String with delimiters such as commas, and semicolons; make this work." l := StrLen(string) Loop, %l% { Msgbox, , GetChar Output, % "Character " GetChar(A_Index,string) " found at position " A_Index ". Have a nice day." } ExitApp G...
by TXShooter
10 Jul 2020, 10:13
Forum: Ask for Help (v1)
Topic: Hyper Link Clicking on Chrome Without Using My Mouse
Replies: 2
Views: 997

Re: Hyper Link Clicking on Chrome

What code have you tried so far?
by TXShooter
10 Jul 2020, 10:04
Forum: Ask for Help (v1)
Topic: A function for Char by Char examination?
Replies: 10
Views: 4655

A function for Char by Char examination?

Either I'm not using the proper search terms, or this is far more illusive than I would've thought. Is there a simple function that allows for a character by character examination of a string variable, or am I going to have to build a complex Regex and Loop Parse hybrid? var := "Test String with del...
by TXShooter
14 Oct 2019, 09:54
Forum: Ask for Help (v1)
Topic: Minimum Requirements for MS Access File I/O?
Replies: 4
Views: 5926

Re: Minimum Requirements for MS Access File I/O?

I use a slightly modified version of VxE's ADOSQL to query and modify Access databases. My version is ADOSQL2DF and was modified from VxE's to return a single recordset instead of multiple. Note that ADOSQL only works if you use 32 bit AHK and not 64 bit. A sample of how to use: Thank you, but, ple...
by TXShooter
12 Oct 2019, 12:01
Forum: Ask for Help (v1)
Topic: Minimum Requirements for MS Access File I/O?
Replies: 4
Views: 5926

Minimum Requirements for MS Access File I/O?

I'm delving into writing a script to work with an existing MS Access '98 Database, password protected, and is constantly in use by the system servers on a closed LAN that will never see the internet. This database has something like 70 tables with thousands and thousands of records. I won't be needi...
by TXShooter
06 May 2019, 20:00
Forum: Ask for Help (v1)
Topic: Interfacing with an online bank page?
Replies: 2
Views: 821

Re: Interfacing with an online bank page?

Anyone at all?

Go to advanced search