Search found 487 matches

by JnLlnd
03 Nov 2022, 16:00
Forum: Ask for Help (v1)
Topic: Open a folder in a new tab of Windows Explorer (Win 11 22H2)?
Replies: 1
Views: 1177

Open a folder in a new tab of Windows Explorer (Win 11 22H2)?

With Windows 11 22H2, Windows Explorer build number 22621.675 (or more) now has tabs. Sending ^t to the active Explorer window opens a new tab and make it active. Using this method, the code below opens a folder in a new Explorer tab. But is there a better technique using, for example, a method of t...
by JnLlnd
03 Nov 2022, 12:35
Forum: Ask for Help (v1)
Topic: 4 options to change the current folder in Windows Explorer
Replies: 77
Views: 38169

Re: 4 options to change the current folder in Windows Explorer

I merged the GetActiveExplorerTab() code from ntepa with the existing function Explorer_Navigate() from Learning one into the new function Explorer_Navigate_Tab(). Tested on Win 10 and Win 11 build 22621.755. If there is not issue reported here, I'll add it to this thread OP. #Requires AutoHotkey v1...
by JnLlnd
28 Oct 2022, 20:06
Forum: Ask for Help (v1)
Topic: recreating AHK v2's ComCall function
Replies: 11
Views: 1649

Re: recreating AHK v2's ComCall function

I did not have to work on it. I found in my notifications that @ntepa just did it :-)
viewtopic.php?p=488620#p488620
by JnLlnd
28 Oct 2022, 20:04
Forum: Ask for Help (v1)
Topic: 4 options to change the current folder in Windows Explorer
Replies: 77
Views: 38169

Re: 4 options to change the current folder in Windows Explorer

ntepa wrote:
28 Oct 2022, 02:01
Lexikos posted a solution to get the active tab. I only converted it to v1:
I was trying to do it. I'm glad you did it before. Tested. It works perfectly.

I'll update the script in the OP with this code (not now but soon).

Thank you @ntepa !
by JnLlnd
28 Oct 2022, 19:33
Forum: Ask for Help (v1)
Topic: recreating AHK v2's ComCall function
Replies: 11
Views: 1649

Re: recreating AHK v2's ComCall function

Thank you lexikos. I'll work on it.
by JnLlnd
28 Oct 2022, 17:46
Forum: Ask for Help (v1)
Topic: recreating AHK v2's ComCall function
Replies: 11
Views: 1649

Re: recreating AHK v2's ComCall function

> malcev Oh... > Compare I reviewed the differences in DllCall between v1.1 and v2 and I think the code in the previous post is OK regarding the syntax. What I'm not sure (and I'm far from mastering this area of expertise...) is if the various commands included in the ComCall() function converted to...
by JnLlnd
27 Oct 2022, 23:45
Forum: Ask for Help (v1)
Topic: Retrieve Win 11 build number
Replies: 2
Views: 293

Re: Retrieve Win 11 build number

lexikos wrote:
27 Oct 2022, 22:46
It's not necessarily the Windows build number, but maybe it will tell you what you want to know.
Yes. It returns 10.0.22621.755 for the latest Win 11 build. Thanks!
by JnLlnd
27 Oct 2022, 23:41
Forum: Ask for Help (v1)
Topic: recreating AHK v2's ComCall function
Replies: 11
Views: 1649

Re: recreating AHK v2's ComCall function

Hi jeeswg Was there any progress converting ComCall to v1.1? I tried using your 2nd version above but no success. I'm not very familiar with v2 new functions. I need to convert this v2 code from lexikos . It is using the v2 ComCall function. Here is my best try... Not working, yet. #requires AutoHot...
by JnLlnd
27 Oct 2022, 15:34
Forum: Ask for Help (v1)
Topic: Retrieve Win 11 build number
Replies: 2
Views: 293

Retrieve Win 11 build number

The latest Win 11 release has the build number 22621.675 ( code name "Moments 1" ). AHK built-in variable only returns: 10.0.22621 . The .675 is missing. The DllCall GetVersionExW also returns only 22621 as build number. This build number is the only way to identify this release that includes an imp...
by JnLlnd
27 Oct 2022, 14:56
Forum: Ask for Help (v1)
Topic: 4 options to change the current folder in Windows Explorer
Replies: 77
Views: 38169

Re: 4 options to change the current folder in Windows Explorer

I used the following code to retrieve info from the instances of Windows File Explorer. #requires AutoHotkey v1.1 #SingleInstance,Force #NoEnv saExplorers := Object() For pExplorer in ComObjCreate("Shell.Application").Windows { strType := "" try strType := pExplorer.Type ; Gets the type name of the ...
by JnLlnd
27 Oct 2022, 14:45
Forum: Ask for Help (v1)
Topic: 4 options to change the current folder in Windows Explorer
Replies: 77
Views: 38169

Re: 4 options to change the current folder in Windows Explorer

Windows 11 version 22H2, codenamed "Moment 1", released on October 18, 2022 (build 22621.675) has this new feature: "New tabbed browsing feature and refreshed layout of the left navigation pane in the File Explorer". These new tabs will certainly be much appreciated. But they cause an issue with the...
by JnLlnd
25 Oct 2022, 08:57
Forum: Ask for Help (v1)
Topic: Activate the Directory Opus under the mouse cursor
Replies: 4
Views: 450

Re: Activate the Directory Opus under the mouse cursor

Thanks for the input Mike. This could work. I did not consider this option before because the select files info is required only for a fraction of the app users and for only a specific task (I would say less than 1% of the use cases). At first, executing step 1 each time the menu is open seems overk...
by JnLlnd
24 Oct 2022, 21:38
Forum: Ask for Help (v1)
Topic: Activate the Directory Opus under the mouse cursor
Replies: 4
Views: 450

Re: Activate the Directory Opus under the mouse cursor

mikeyww wrote:
24 Oct 2022, 18:25
It seems to me that the other forum is the right one, because I think that the answer will depend on how the program works.
Probably. But they don't necessarily know how AHK can interact with windows. I hope to find a AHK forum user who knows DOpus or a DOpus forum user who knows AHK :-)
by JnLlnd
24 Oct 2022, 17:19
Forum: Ask for Help (v1)
Topic: Activate the Directory Opus under the mouse cursor
Replies: 4
Views: 450

Activate the Directory Opus under the mouse cursor

When running Directory Opus (Dopus) with in "Dual Vertical Folder" mode, I'm trying to activate the folder under the mouse cursor. I have this code to enable the DOpus lister window: #requires AutoHotkey v1.1 #SingleInstance,Force #NoEnv MouseGetPos, , , strWinID WinActivate, ahk_id %strWinID% ; str...
by JnLlnd
19 Oct 2022, 11:22
Forum: Scripts and Functions (v1)
Topic: The easiest way to change the skin of the GUI - skinsharp
Replies: 7
Views: 2404

Re: The easiest way to change the skin of the GUI - skinsharp

+1 Still looking for a 64-bit skin tool...
by JnLlnd
19 Oct 2022, 11:15
Forum: Scripts and Functions (v1)
Topic: GUI Skinning Methods
Replies: 64
Views: 37506

Re: GUI Skinning Methods

Yes it worked. I had to whitelist the file to download it, assuming the Trojan:Win32/Vigorf.A alert was a false positive. I re-tested the file I needed USkin.dll and it is clean. Thanks.
by JnLlnd
18 Oct 2022, 15:51
Forum: Scripts and Functions (v1)
Topic: [CLASS] CtlColors - color your controls (2017-10-30)
Replies: 67
Views: 37792

Re: [CLASS] CtlColors - color your controls (2017-10-30)

I'm using this control to set the background and foreground color of an Edit control. CtlColors.Change(g_strEditorControlHwnd, strEditBackgroundColor, strEditTextColor) It works well except when the content of the control is completely deleted (Ctrl+A, Del). Just after the content deletion, the back...
by JnLlnd
17 Oct 2022, 17:30
Forum: Scripts and Functions (v1)
Topic: GUI Skinning Methods
Replies: 64
Views: 37506

Re: GUI Skinning Methods

I'm looking for the USkin.dll file. The links in the OP are broken.

@joedf: I'm trying to download the .7z file but it fails (network error). Is the file still available at that URL http://ge [dot] tt/8zMaRUW1?c

Thanks.
by JnLlnd
14 Sep 2022, 07:41
Forum: Scripts and Functions (v1)
Topic: Changing Control Background/Text Color
Replies: 11
Views: 3129

Re: Changing Control Background/Text Color

Thank you just me. I also found your class Class_CtlColors (viewtopic.php?f=6&t=2197). Very well done!

Go to advanced search