Posted: 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
Sponsor Sponsor
neufelni
Posted: Thu May 18, 2006 11:00 am Post subject: (No 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
trees are uber
Posted: Thu May 18, 2006 11:10 am Post subject: (No subject)