I installed three Windows 10 virtual machines using VMware, and all of them have QM installed.
Using the code below, I can easily send code from QM on the host machine to QM running inside the virtual machines for execution.
Would it be possible for LA to support a feature similar to QM’s net function and panel?
I believe this feature could solve many of the issues and limitations that I have reported before.
Macro NET_Test
Function Fun1
Using something like an HTTP server in LA could achieve the functionality I need.
However, if LA could provide a panel similar to QM’s, it would be much more convenient.
Using the code below, I can easily send code from QM on the host machine to QM running inside the virtual machines for execution.
Would it be possible for LA to support a feature similar to QM’s net function and panel?
I believe this feature could solve many of the issues and limitations that I have reported before.
Macro NET_Test
out
str _ip="192.168.1.129"
str _pwd="abc001"
str r m="Fun1"
str a="hello qm"
if(NetSendMacro(_ip _pwd m)) end "could not send"
if(net(_ip _pwd m r a)) end "could not launch"
out rUsing something like an HTTP server in LA could achieve the functionality I need.
However, if LA could provide a panel similar to QM’s, it would be much more convenient.
