Is there a better way to do this? Because there will be a number of strings wanting to be displayed.
program dBase call execute_command_line('Cosmetics.exe')
call locate(1) print*,'Have a nice day today' read* end program dBase
subroutine locate(z) integer, intent(in)::z if (z==1)call execute_command_line('LocateXY.exe 5 4') end subroutine locate