A Aurelie 6.Oct.08 05:57 AM a Web browser Notes Client 6.5.4 Windows 2000
Hello,
I begin in lotusscript and i do this :
Call fiche.replaceItemValue("ZN_ENTITE", docEntite.GetItemValue("EXT_Deleg")(0) & " - " & docEntite.GetItemValue("DEL_Nom")(0))
Call fiche.repaceItemValue("ZN_NUMENTITE", docEntite.GetItemValue("EXT_Deleg")(0))
but an error "Ilegal use of property" occurs at : Call fiche.repaceItemValue("ZN_NUMENTITE", docEntite.GetItemValue("EXT_Deleg")(0))
I tried :
-> Call fiche.repaceItemValue("ZN_NUMENTITE", Cstr(docEntite.GetItemValue("EXT_Deleg")(0)))
-> temp = Cstr(docEntite.GetItemValue("EXT_Deleg")(0))
Call fiche.repaceItemValue("ZN_NUMENTITE", temp)
But nothing works.
Somenone knows why this problem occurs ?
Thanks.


Illegal use of property (A Aurelie 6.Oct.08)
. . RE: Illegal use of property (Marcin Zydzik 6.Oct.08)
|