Topic: dlgrequesttext problem
dlgrequesttext does not output user text input in the following subroutine. Is it me (most likely) or a bug?
subroutine get_text(prompt, text)
use appgraphics
implicit none
integer i2
character :: prompt*(*), text*(*), title*5
logical ok
title = 'title'
ok = dlgrequesttext (text, title, prompt)
i2 = len(text)
! text = '4'
end subroutine get_text