Jump to content

Recommended Posts

Posted

the follow code can not compile,

 

TWinControl(Sender).Color:=clRed;---->the color now not support

 

TUniDBComboBox(AComboBox).Field..---->the field now not support,

(but TUniDBEdit、TUniDBMemo is support)

 

the two properties work fine in ver 0.84

 

found another issue:

when DBEdit set UpperCase,if key lowercase char, then commit to database, it won't not be transfer to uppercase char, but ui show is uppercase.

  • Administrators
Posted

the follow code can not compile,

 

TWinControl(Sender).Color:=clRed;---->the color now not support

 

Use following syntax.

 

(Sender as TUniControl).Color:=clRed;

 

TUniDBComboBox(AComboBox).Field..---->the field now not support,

(but TUniDBEdit、TUniDBMemo is support)

 

Will be fixed in next build..

 

found another issue:

when DBEdit set UpperCase,if key lowercase char, then commit to database, it won't not be transfer to uppercase char, but ui show is uppercase.

 

Will be fixed in next build..

×
×
  • Create New...