Skip to content
⌘ NSIS Forum Archive

Don't Show GroupBox Border

4 posts

r2du-soft#

Don't Show GroupBox Border

in modern ui when i compile the installer and after open exe file
i dont see GroupBox Border




!include nsDialogs.nsh
!include LogicLib.nsh
!include "MUI2.nsh"

!insertmacro MUI_LANGUAGE English ;Modern UI
Page Custom nsDialogsPage



Function nsDialogsPage

	  nsDialogs::Create 1018
	  Pop $0
	  ${IF} $0 == error
		Abort
	  ${EndIF}

	 ${NSD_CreateGroupBox} 10u 10.00u 150.00u 150.00u "Don't Show GroupBox Border"
	  Pop $2
	nsDialogs::Show
FunctionEnd


Section
SectionEnd


but when i remove the:
!insertmacro MUI_LANGUAGE English ;Modern UI
in old ui i see the GroupBox Border




i think this problem of the Windows version:

r2du-soft#
The problem was solved
The problem was not Windows
The problem was the monitor screen
If possible, delete the post by the administrator
Thanks
Anders#
All Pages should come before MUI_LANGUAGE in the script!

nsDialogs does not support float dimensions.

Both of your screenshots have a groupbox with a border so I have no idea what you are actually talking about.
r2du-soft#
Originally Posted by Anders View Post
All Pages should come before MUI_LANGUAGE in the script!

nsDialogs does not support float dimensions.

Both of your screenshots have a groupbox with a border so I have no idea what you are actually talking about.
Other friends when working with computers
That has changed the monitor contrast
That caused the group box border to be unrecognizable on my computer
I checked this post and the photos with the phone and after that I realized this issue
🙂