[DONE] help file error
Posted: Sun May 17, 2009 4:04 pm
Found an error in the help file I believe.
Procedure.s LocalFindString(a$, b$) <-- should be Procedure.l
- np
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- np