Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Slow Opening Project
Message
General information
Forum:
Visual FoxPro
Category:
Source Safe Control
Miscellaneous
Thread ID:
00844086
Message ID:
00844866
Views:
16
Hi Wayne,

I had this problem and what I do now is use the task pane.
I set up my project and run this script before the project is opened..

At any rate I've found running this script makes the project load a lot faster..

_SCREEN.Caption="QuestPDM Oracle 4.3.0"
ccProject="C:\DEVELOP\QUESTPDM.ORA\4.3.0\QUESTPDM.ORA\questpdm.pjx"

local llAbort, lnProjectCount, lnCount

llAbort = .f.
lnProjectCount = application.projects.count
for lnCount = 1 to lnProjectCount
if ccProject $ LOWER(application.projects.item(lnCount).name)
llAbort = .t.
endif
endfor

if !llAbort
TRY
use (ccProject)
lok=.T.
CATCH
lok=.F.
ENDTRY

IF lok
replace all user with iif(local,"Y","N")
replace all local with .t.
use
modify project (ccProject) nowait
use (ccProject) again shared
replace all local with user=="Y"
USE
ENDIF
endif
Previous
Reply
Map
View

Click here to load this message in the networking platform