S
Stefan Marquardt
Guest
Thanks Keith This info was helpful: "server-num 0 is reserved for primary broker" "case sensitive comparison" How it the syntax for FIND record WHERE record.field = "-n" (or -N) ? For the port I will use this code, it works for single broker or an existing secondary broker: def var iPort as integer. find first _servers where _server-type = "login" and _server-num > 0 no-error. if avail _servers then iPort = _server-PortNum. else do: find _servers where _server-type = "login" and _server-num = 0. iPort = _server-PortNum. end. disp iPort.
Continue reading...
Continue reading...