Hey everyone, I'm trying to find out how to make the prompt character (currently a _) a space instead while displaying data in TrueDBGrid. I've searched the forums and help docs, but cannot find any mention of it. I do have a slightly older version, so I do not know if this has been changed in more recent versions. Any ideas?
Thank you,
Chris
Hi,
This feature is not possible with the latest version, so I don't believe it was ever possible. Feel free to submit enhancement requests to feedback@componentone.com
Regards,Greg L
As a workaround you can use C1TextBox as the column editor. With C1TextBox you can assign an editmask with any prompt character.
c1TrueDBGrid1.Columns[1].Editor = c1TextBox1;
c1TextBox1.MaskInfo.PromptChar = ' ';