In development environment, every thing works fine but when I make executable, 'error _runcodeerror.prg is not found ' comes. I found this code in _html.vcx used in htmltag's error method. Below is the code from error method of _htmltag
Code:
Lparameters nError, cMethod, nLine
Local lcMethod
External Array __RunCodeError
If nError=1426 Or nError=1945
Return
Endif
lcMethod=Lower(Alltrim(cMethod))
If lcMethod=="runcode"
Return __RunCodeError(Error(),0,"RunCode","",Message())
Endif
If Not DoDefault(nError, cMethod, nLine)
Return .F.
Endif