This laptop is linked wirelessly (if thats a word) and it can find and contact the computer with the database
I exported the program for mac and tried it on a mac mini with wifi we have here however it didnt work trying to convert the PCs name to IP
Code: Select all
global gConnectionIP
on ContactServer
put the hostNameToAddress of (the text of fld "DBaseComputer") into testserver
if testserver is empty then
answer "Can not find the server computer"
else
put testserver &":3306" into gConnectionIP
answer "Found Server"
end if
end ContactServer