Removing window title bar on process procedure?

I want to remove the title bar from a progress window.

I’ve cleared the title, which removes the window title bar in the formatter. But at run time the title bar still appears with a “processing records” message.

I’ve also set the frame type to none, and ensured that the maximize and system menu attributes are not checked.

Ideas?

You did everything correct. Just do not use the Process template. It forces setting the caption text => displaying the caption bar for a window.

             PROGRAM

             MAP
               Test()
             END

  CODE
  Test()
  RETURN

! ============================================================================

Test  PROCEDURE()

V     LONG,AUTO

W    WINDOW,AT(,,100,32),CENTER,GRAY
       PROGRESS,AT(10,10,80,12),USE(V),RANGE(0,100),SMOOTH
     END

  CODE
  V = 30

  OPEN (W)

  ACCEPT
  END

  CLOSE (W)
  RETURN

Thanks.

I ended up adding 0{prop:text} = ‘’ to an embed point after the process procedure was specifying a window title.