Page 1 of 1

[DONE] help file error

Posted: Sun May 17, 2009 4:04 pm
by NoahPhense
Found an error in the help file I believe.

Code: Select all

   Procedure.s LocalFindString(a$, b$)
     ProcedureReturn FindString(a$, b$, 1)
   EndProcedure

   ProcedureDLL.s MyReplaceString(a$, b$, c$)
     chi = LocalFindString(a$, b$)
     result$ = Left(a$, chi)+c$+Right(a$, Len(a$)-Len(b$))
     ProcedureReturn result$
   EndProcedure
Procedure.s LocalFindString(a$, b$) <-- should be Procedure.l

- np

Posted: Mon May 18, 2009 9:52 am
by lexvictory
fixed for next version