I have to redesign small project inside small LAN (10 PC under WinXP Pro and Windows 7) with app based on VFP9. Old solution was that compiled VFP app (EXE) was on most powerfully PC together with tables and other files in common folder called appfolder. I made it shared & free for changes and on next 4 PC I made shortcuts on desktop (\\mainserver\appfolder\starter.exe) to EXE and it worked fine. But on LAN connected another few computers & users which shall not be allowed to use this app nor to see contents of this folder. I thought about creating Guest account on "server" PC and putting password by using Win XP ability. I did it, created profile Guest on "server" PC that worked for login purpose but I wasn't able to access to this folder from others PC even I know password. In dialog that appeared (Connect to Mainserver) I saw Username: \Mainserver\Guest and in field bellow I put password for Guest but not accepted!? Why? How?
I wish to put VFP compiled app (EXE) on all 4 PC and to make this app to be able to read data from tables which are in password protected folder on PC called Mainserver. I tried some plays with API calls but unable to comply. Earlier, without password secured folder I put inside app:
and it was able to read data w/o problem. How to achieve same effect with password protected folder? Thanks in advance.
There is no good nor evil, just decisions and consequences.
I wish to put VFP compiled app (EXE) on all 4 PC and to make this app to be able to read data from tables which are in password protected folder on PC called Mainserver. I tried some plays with API calls but unable to comply. Earlier, without password secured folder I put inside app:
Code:
road="\\Mainserver\appfolder"
SET PATH TO (road)
SET DEFAULT TO (road)
There is no good nor evil, just decisions and consequences.