How to remove the border of Tab3?

Get help with using AutoHotkey (v1.1 and older) and its commands and hotkeys
afe
Posts: 615
Joined: 06 Dec 2018, 04:36

How to remove the border of Tab3?

18 Jan 2019, 02:21

Hello,
Is there a way to remove the borders on the right and bottom of Tab3?

Thanks.

Code: Select all

Gui, Margin, 0, 0
Gui, Add, Tab3,, General|View|Settings
gui,show
User avatar
TheDewd
Posts: 1510
Joined: 19 Dec 2013, 11:16
Location: USA

Re: How to remove the border of Tab3?

18 Jan 2019, 08:30

Is this acceptable?

Create the tab control, and then add a few white filled rectangles over the tab control to cover the outlines.

Code: Select all

#SingleInstance, Force

Gui, Margin, 0, 0
Gui, Add, Tab3, w400 h400, General|View|Settings

Gui, Tab ; Place future controls outside of tab control
Gui, Add, Text, x0 y20 w2 h400 0x6 ; SS_WHITERECT
Gui, Add, Text, x397 y20 w20 h400 0x6 ; SS_WHITERECT
Gui, Add, Text, x0 y397 w800 h20 0x6 ; SS_WHITERECT
Gui, Add, Text, x-10 y20 w800 h1 0x10 ; SS_ETCHEDHORZ 

Gui, Show, w400 h400, Example
return

Return to “Ask for Help (v1)”

Who is online

Users browsing this forum: mikeyww, ReyAHK and 281 guests