Jump to content

Recommended Posts

Posted

I am trying to capitalize the first letter of each word in a TUniEdit control.  

 

Things that are working in a VCL application are not working for me.

 

For example changing Key in KeyPress has no effect on the Sender.Text

 

Key := UpCase(key);  // This works in VCL but not Uni

 

I need something more complicated so this is just an example.

  • Administrators
Posted

Yes, uniGUI behaves different here. It can not change a key which is pressed on client side. The Key parameter is only defined as a VAR to keep VCL syntax compatibility.

This behavior must be implemented on client side using Java Script.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...