propath - modify

bulklodd

Member
you didn't specify how you want to do that though. but you can do that in runtime usung PROPATH function

Code:
PROPATH = ".,x:\,y:\".

another way to do that is to set environment variable PROPATH before starting client-session. but if you have the windows client you should change propath either in the registry or in ini file, it depends on what parameters you use to start your session.

hth
 

DevTeam

Member
Code:
PROPATH = ".,x:\,y:\".
hth

If you just want to add directories to your propath, you should do
Code:
PROPATH = PROPATH + ".,x:\,y:\".
otherwise you will erase the original setting of the propath.

EDIT : and be careful to the separating character :
";" on Windows
"," on Unix
 
Top