Create a new window child to ANSYS


/ Published in: TCL
Save to your folder(s)

Basic commands for creating a window child to ANSYS (transient).


Copy this code and paste it in your HTML
  1. set parent [toplevel .windowName -class Ansys]
  2. wm title $parent "This is a title"
  3. wm geometry $parent [option get .dlgAnsysGUI geometry {}]
  4. wm transient $parent .dlgAnsysGUI
  5. wm deiconify $parent
  6. wm resizable $parent 0 0

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.