How to avoid the close button in Window created using Hwtk

User: "Altair Forum User"
Altair Employee
Updated by Altair Forum User

Hi,

i created a window using toolkit,window created but automatically toolkit creates a close button in my UI.How can i avoid that kindly guide me to solve this issue 

 

kindly find the code which i mentioned below which i used to create a window using toolkit 

 

#**********************************************************************

variable vars;
    set myWin [hwt::CreateWindow win \
        -noGeometrySaving \
        -minSize 200 50 \
        -windowtitle 'Create GUI ' \
        -post];

#**********************************************************************

 

and kindly find the attachment which i mention issue as image 

 

thanks in advance 

 

suresh vijayan 

 

<?xml version="1.0" encoding="UTF-8"?>GUI close button issue.JPG

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "tinh"
    Altair Community Member
    Updated by tinh

    Hi

    From hw13, use hwtk instead of hwt.

    Widgets of hwtk are nicer (vista ttk styles)

    set myWin [hwtk::toplevel .myWin -title 'Create GUI']