Project

General

Profile

doubleentry.p

Stanislav Lomany, 08/14/2023 01:22 PM

Download (257 Bytes)

 
1
def var str1 as char init "str1".
2
def var str2 as char init "str2".
3

    
4
display str1 str2 with frame fr.
5
enable all with frame fr.
6

    
7
on "entry" of str2 do:
8
    message "str2 entry".
9
end.
10

    
11
message "press TAB or click on str2".
12

    
13
wait-for close of current-window.