Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
CLEAR method question
rv = Send_Message(grd_orders$, "OLE.Clear", 0)
The above method clears the text , but not the images or the promt:
Is this intentional?
Comments
The clear method clears the table's data. CellImage and CellPrompt are different properties. To clear them you need to set the respective properties to null.
It's extra work, but only two lines.
Set_Property(grd_orders$, "OLE.CellPrompt[All; All]", "")
Set_Property(grd_orders$, "OLE.CellImage[All; All]", "")
does not work. The prompt remains.
Make it a space character?
Make it a space character?"
yes, I will have to do that.