Where is the mythical file fileservice object? The code below not compile because "fileservice" is undefined
. I also found in the docs
appeonfileservice lnv_ftp
lnv_ftp = create appeonfileservice
This looks better but "appeonfileservice" also does not exists.
Code from documentation example.
long ll_re string info ll_re = fileservice.of_logonfileserver ("192.168.168.52", 80, "username=userA;password=userA") if ll_re = 0 then info = "Logon to file server is successful." elseif ll_re = 1 then info = "Failed to connect to the file server." else info = "Failed to connect to the file server." end if Messagebox( "ll_re="+string(ll_re),info)