Background color for embeded File explorer, Possible?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
keylo
Posts: 51
Joined: 21 Oct 2020, 21:03

Background color for embeded File explorer, Possible?

Post by keylo » 29 Nov 2021, 10:33

Hello, I was able to embed a file browser into my Gui . It is working fine , but I would like to change the white background of the file explorer to match the color of my Gui, Is that possible?

The reason I am using an embedded file explorer it is because it allows drag and drop to other applications unlike listview or teeview.

I tried winset ,transcolor and other things with no result. :cry:
Your help is greatly appreciated, thanks
image.png
image.png (17.88 KiB) Viewed 282 times

Code: Select all

Gui Add, ActiveX, xm y20 w980 h140 vWB, Shell.Explorer
ComObjConnect(WB, WB_events)  
URL := "C:\"
WB.Navigate(URL)
gui, color, c0c0c0 , f0f0f0
Gui Show, w300 h400
return

Return to “Ask for Help (v1)”