when Index have a UDF in Indexkey() it will crash when open Index and don´t have that missing Function
Question :
how can i get "Name" of missing Function when use
- Code: Select all Expand view
- RECOVER oError
i will get
oError:description, oError:operation, oError:osCode
---
let say i got Function Name XYZ()
Question : is it possible to "simulate" Function XYZ() "on-fly"
---
if i have a
- Code: Select all Expand view
- FUNCTION Dummy()
RETURN .T.
i can use #xtranslate XYZ -> Dummy so i can call XYZ() without "real" existing Function XYZ()
---
so when i can get Function Name from oError the Idea is to "redirect" to existing Function Dummy()
is there a Way to use this Idea