# Glade developed window not showing in compile but showing at julia prompt

**URL:** https://discourse.julialang.org/t/glade-developed-window-not-showing-in-compile-but-showing-at-julia-prompt/41194
**Category:** New to Julia
**Created:** [June 11, 2020, 10:10am UTC](https://discourse.julialang.org/t/glade-developed-window-not-showing-in-compile-but-showing-at-julia-prompt/41194 "2020-06-11T10:10:25Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![nwtjl](https://avatars.discourse-cdn.com/v4/letter/n/e0b2c6/32.png) [@nwtjl](https://discourse.julialang.org/u/nwtjl)
#### Post date: [June 11, 2020, 10:10am UTC](https://discourse.julialang.org/t/glade-developed-window-not-showing-in-compile-but-showing-at-julia-prompt/41194/1 "2020-06-11T10:10:25Z")

</div>

Hi,

Here is a sample of the code I am using to display a glade developed window.

```julia
using Gtk, Gtk.ShortNames
b = GtkBuilder(filename="/home/user/Documents/projects/Julia/gladeProjects/app.glade")
win = b["window1"]
showall(win)

```

Here is the glade file I copied from the some web page.

```julia
<?xml version="1.0" encoding="UTF-8"?>
<interface>
  <!-- interface-requires gtk+ 3.0 -->
  <object class="GtkWindow" id="window1">
    <property name="can_focus">False</property>
    <child>
      <object class="GtkButton" id="button1">
        <property name="label" translatable="yes">button</property>
        <property name="use_action_appearance">False</property>
        <property name="visible">True</property>
        <property name="can_focus">True</property>
        <property name="receives_default">True</property>
        <property name="use_action_appearance">False</property>
      </object>
    </child>
  </object>
</interface>

```

when I try to run it using

```julia
julia ./app.glade

```

it compiles without error but no window is displayed.

When I type julia at the prompt and enter the julia environment I can enter each line of the julia code and the window is displayed. What is the problem? THanks in advance.
