You've already forked lazarus-ccr
Auto Set MaxLength in TJDBLabeledEdit
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2062 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -176,6 +176,10 @@ end;
|
||||
procedure TJDBLabeledEdit.SetDataField(const Value: string);
|
||||
begin
|
||||
FDataLink.FieldName := Value;
|
||||
if FDataLink.Field <> nil then
|
||||
MaxLength := FDataLink.Field.Size
|
||||
else
|
||||
MaxLength := 0;
|
||||
end;
|
||||
|
||||
procedure TJDBLabeledEdit.SetDataSource(Value: TDataSource);
|
||||
|
Reference in New Issue
Block a user