FoxInCloud
Lan exe error
Gravatar is a globally recognized avatar based on your email address. Lan exe error
  Arcadio Bianco
  All
  May 13, 2020 @ 06:42pm

These errors occur when I generate the EXE of my Lan project. What can it be?

Program c:\program files (x86)\microsoft visual foxpro 9\tools\ab\aw\awserver.prg has the following errors:
    Unknown MIMEDATETIME - Undefined

Program c:\program files (x86)\microsoft visual foxpro 9\tools\ab\ac\ac.prg has the following errors:
    Unknown CREATEPROCESSEX - Undefined

Program c:\...\microsoft visual foxpro 9\tools\ab\wc\classes\wwhttpheader.prg has the following errors:
    Unknown MIMEDATETIME - Undefined
Gravatar is a globally recognized avatar based on your email address. re: Lan exe error
  FoxInCloud Support - Thierry N.
  Arcadio Bianco
  May 13, 2020 @ 11:56pm

Hi Arcadio,

Your LAN project only needs Home(1) + "tools\ab\*.*", should need nothing in sub-folders ac\, wc\, aw\, etc.

you can see an example here: modify project Home(1) + "tools\ab\aw\samples\tastrade\adapted\tastradeFiC.pjx"

If, in Web mode (If wlWeb()…), your app code uses procedures located in ac\, wc\, aw\, use macro-substitution or evaluate(); eg.: (in this example, acProc is located in ac\)

If wlWeb()… && or thisForm.wlWeb

&& replace
result = acProc(parm1, parm2, etc.)

&& by
result = evaluate("acProc(parm1, parm2, etc.)")

&& or

&& replace
do acProc with parm1, parm2, etc.

&& by
local cProc
cProc = "do acProc with parm1, parm2, etc."
&cProc

This will cheat the project manager when searching references.

Try to avoid execscript() because it breaks the call stack and makes debugging harder.

© 1996-2024