Alessandro Posted October 10, 2017 Posted October 10, 2017 Hello, Throughout my project, Edits and DBEdits have the property CHARCASE as ecNORMAL. It has some form, command or script to activate at once, throughout the project, so that the Edits are UpperCase, LowerCase or Normal (at runtime). Thank you Quote
Sherzod Posted October 10, 2017 Posted October 10, 2017 Hi, Maybe you wanted like this? For example for UniDBEdits: procedure TMainForm.UniButton1Click(Sender: TObject); var I: Integer; begin for I := 0 to ComponentCount - 1 do if Components[I] is TUniDBEdit then TUniDBEdit(Components[I]).CharCase := ecUpperCase; // end; Best regards, 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.