Computer Science Canada

how to open programs

Author:  trees are uber [ Thu May 18, 2006 10:47 am ]
Post subject:  how to open programs

im trying to open mozilla firefox from turing.. how must i do this

Author:  neufelni [ Thu May 18, 2006 11:00 am ]
Post subject: 

You open a program with Turing by using Sys.Exec. This example opens Internet Explorer, but to open a different program like Mozilla Firefox, you just change what is in the brackets.
code:

if not Sys.Exec("IEXPLORE.exe") then
    put "Error opening Internet Explorer."
end if

Author:  trees are uber [ Thu May 18, 2006 11:10 am ]
Post subject: 

that rocks thanks


: