Get(ConnectionState) Aslında bağlantının güvenlik durumunu veriyor, (0) döndürürse hiçbir şekilde bağlantı yok,diğer seçeneklerde (1,2,3) var olarak kullanıldığında istenen sonucu alabilirsiniz...
Ayrıntılar(ing)
Mac kullanıyorsanız Perform AppleScript ile mümkün..Bir Text alanı ve aşağıdaki scripte ihtiyacınız var;
try
set thePing to do shell script “/sbin/ping -o -c 5 www.google.com”
on error
set thePing to “error”
end try
tell application “FileMaker Pro Advanced”
if thePing is not “error” then
set cell “Internet” to “var”
else
set cell “Internet” to “yok”
end if
end tell
Örnek Dosya (Mac ile denendi.)
Windows'ta ise Get(SystemIPAddress) ile IP alınabilir,net yoksa boş gelecektir.Ona göre bir scriptle bir Text alanına yazdırılabilir...
Örnek Dosya