Page 1 of 1

Ahk, Edits border/or remove HELP

Posted: 08 Jun 2023, 22:37
by LuckyS1337
Any idea how to change color of Edits border? or remove it?
I would like to change to color 0x1E1E1E

Re: Ahk, Edits border/or remove HELP

Posted: 12 Jun 2023, 03:19
by Rohwedder
Hallo,
or remove it:

Code: Select all

q::
Gui, -Caption +ToolWindow
Gui, Add, Edit,, with Border
Gui, Add, Edit, -E0x200, without
Gui, Show, NA
Return

Re: Ahk, Edits border/or remove HELP

Posted: 12 Jun 2023, 20:44
by LuckyS1337
@Rohwedder Hey thanks a lot!