A new installation has issues with connectivty speed and I am looking to load the application at the client and direct to the database/index locations.
Is it better to store in a configuration the location of the databases/indexes like G:\_Psst or use the UNC \\ServerName\_Psst ?
It has been easy to simply update a single application location (server), rather than determine if an update is available, then download to the client the updated application.
But speed is speed.
Code: Select all
#include "Collat.Ch"
PROCEDURE MvFile (oSay1, oSay2)
SET EXCLUSIVE OFF
SET DEFAULT TO \_Psst\Mv
Mvf100(oSay1, oSay2) // OrdMst
Mvf100a(oSay1, oSay2) // AltOrdMst
Mvf110(oSay1, oSay2) // CompDtl
Mvf125(oSay1, oSay2) // DebtMst
Mvf150(oSay1, oSay2) // HearMst
Mvf175(oSay1, oSay2) // AssocMst
Mvf185(oSay1, oSay2) // BatchMst
Mvf200(oSay1, oSay2) // CashMst
Mvf300(oSay1, oSay2) // CrtMst
Mvf400(oSay1, oSay2) // StatMst
Mvf450(oSay1, oSay2) // MemoDtl
Mvf475(oSay1, oSay2) // DigiMst
Mvf500(oSay1, oSay2) // SeizMst
Mvf510(oSay1, oSay2) // SeizChg
Mvf525(oSay1, oSay2) // SeizHear
Mvf550(oSay1, oSay2) // SeizDtl
Mvf575(oSay1, oSay2) // DebtSeiz
Mvf700(oSay1, oSay2) // RedMst
DocFile(oSay1, oSay2) // Document
MvLog(.t.) // System Access Log
SET DEFAULT TO \_Psst\Cm
Cmf110(oSay1, oSay2) // AltMst
Cmf125(oSay1, oSay2) // LocMst
Cmf850(oSay1, oSay2) // CodeDtl
Cmf855(oSay1, oSay2) // CodeRate
Cmf950(oSay1, oSay2) // RcptMst
SET DEFAULT TO \_Psst\Pe
Pef000(oSay1, oSay2) // PersMst
Pef025(oSay1, oSay2) // PersGrp
Pef050(oSay1, oSay2) // PersDtl
Pef075(oSay1, oSay2) // GroupDtl
Pef200(oSay1, oSay2) // CodeMst
Pef200a(oSay1, oSay2) // CodeAlt
SET DEFAULT TO \_Psst\Pt
Ptf700(oSay1, oSay2) // CityMst
SET DEFAULT TO \_Psst\Vr
Vrf250(oSay1, oSay2) // MakeMst
SET DEFAULT TO \_Psst
Appt(oSay1, oSay2) // Appt
CalMemo(oSay1, oSay2) // CalMemo
ToDo(oSay1, oSay2) // ToDo SET DEFAULT TO C:\
IF Valtype(Set_MainWindow()) == 'O'
SetAppWindow(Set_MainWindow())
ENDIF
RETURN
Rick