I have two Mac applications:
App1.app and App2.app
From App1 I call App2 passing some arguments as follows:
Dim myApp as FolderItem = GetFolderItem(“App2.app”)
myApp.Launch(“/params:NroHC=345”)
In App2, in the Open event, I get the arguments passed as follows:
Dim str as string
str = System.Commandline
so the variable str in App2 is now “/params:NroHC=345”
This works fine with Xojo 2017r1.
But with Xojo 2022r1 is not working any more !!!
Someone have any idea in order to solve this ?
Thanks a lot.