Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
LanguageMgr Problems
Message
From
04/04/2002 09:03:51
 
 
To
03/04/2002 20:33:00
General information
Forum:
Visual FoxPro
Category:
The Mere Mortals Framework
Miscellaneous
Thread ID:
00640674
Message ID:
00640837
Views:
16
A small change to the function MakeView_LV_MSGSVCINIT in ..\common30\utils\langsetup.prg solves the problem. I'll post this in case someone else needs it.

ORIGINAL CODE:
CREATE SQL VIEW "LV_MSGSVCINIT" ;
AS SELECT * from msgsvc where ilangid = vp_iLangID OR (ilangid = 0 AND ckey NOT IN (SELECT ckey FROM msgsvc WHERE ilangid = vp_iLangID))

CHANGED TO:
CREATE SQL VIEW "LV_MSGSVCINIT" ;
AS SELECT * from msgsvc where (ilangid = ?vp_iLangID) OR (ilangid=0 AND ckey NOT IN (SELECT ckey FROM msgsvc WHERE ilangid = ?vp_iLangID))
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform