RE: v13 - how to get directory path on server from client

2016-08-22 Thread Dennis, Neil
You could also skip the interprocess variables, create a method to return the directory and check the "Execute on Server" check box. Like this: Method "GetFolder" has execute on server checked $0:= get 4d folder(3) Then call "GetFolder" like this $text:=GetFolder Neil Privacy

RE: v13 - how to get directory path on server from client

2016-08-17 Thread Randy Engle
Chip, The parameter 3 is for the "4D Client database folder" For which doesn't exist on 4D Server That said, using a method whose attribute is Execute On Server, works great for something like this. $folder:=EOS_Get_4D_Folder (Active 4D Folder) * //