我一直在寻找一种在Excel 2011 for Mac中使用VBA发送/接收数据报的方法。我有能力发送信息:
Function sendDatagramPacket(message As String)
system ("echo foo | nc -4u -w1 localhost 3000") End Function
无论如何,尝试建立一个真正的连接做这样的事情:
system ("nc localhost 1234")
可能会建立连接,但有没有办法接收发送的邮件?或者更好的方法吗?
提前致谢