winapp
program mouse_test
include <windows.ins>
external test
character*10 data
data = ' '
i=winio@('%ac[Enter]&',test)
i=winio@('%^rs',data,test)
end
integer*4 function test()
include <windows.ins>
test=1
write(*,*)'call back test called'
end
Hello, with %^rs the call back 'test' works fine with characters and with [ENTER] . Is it possible to call the call back function in %^rs with the right mouse click?
Thanks Johann