I have to display some modified ‘masked’ value in a VCL TDBGrid (Delphi XE2), ie : change ‘password’ to ‘xxxxxxxx’ or uppercase ‘pass’ to ‘PASS’ or others.
As my Fields are dynamically created (but the Name is coded so I know how and when mask them ie : xxxx_PASSW for password Fields) I can’t use (I Think) OnGetText event.
So what is the most efficient way to do this (as I yet use OnDrawColumnCell for some presentation modification I would prefere to use it) ?
There are at least 3 ways to do this, I’ll illustrate by masking a password field from a database. I’m using sql server for the sql dialect.
1. Define a calculated field on the sql string.
Then, right-click on the dbgrid, choose the columns editor. Inside the columns editor of the dbgrid, simply select maskedPwd column instead of the real password column. Now the dbgrid will display the masked value instead of the password.
or
2. Define a calculated field on the dataset used by the dbgrid.
Simply right-click on the dataset, and use the fields-editor to create a new calculated field (e.g. maskedPwd2). Then onCalcField event of the dataset, write code to set the value of maskedPwd2, i.e.
Make sure to include maskedPwd2 in the column editor of the dbgrid.
or
3. Write custom text on the onDrawColumnCell event of the dbgrid.
Note that the code above only displaying the masked value, but if the grid is editable, the real password value will be visible when the cell is focused/edited.
To deal with this, drop a TEdit on the form, clear the text property, set PpasswordChar property to ‘*’, and visible to false. Now it is ready to be used as a replacement for the inbuilt editor for the cell. Now, we need some glueing logic, i.e.
Note that the code above is not perfect, yet, but the essence is there. I’ll leave it to you for exercise.