amrihuang Posted May 19, 2011 Posted May 19, 2011 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 Farshad Mohajeri Posted May 19, 2011 Administrators Posted May 19, 2011 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..
Recommended Posts