Changeset 180 for oup/current
- Timestamp:
- May 17, 2007, 5:08:29 PM (18 years ago)
- Location:
- oup/current
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
oup/current/Helper/ValueEdit.pas
r111 r180 67 67 edit_new.EditType := etString; 68 68 edit_new.Text := ''; 69 edit_new.LimitCheck := False;70 69 edit_new.MaxLength := 0; 71 70 edit_new.Max := 0; … … 111 110 end; 112 111 end; 112 edit_new.Text := current; 113 113 edit_new.SetFocus; 114 114 edit_new.SelectAll; … … 136 136 procedure TForm_ValueEdit.FormCreate(Sender: TObject); 137 137 begin 138 DecimalSeparator := '.'; 138 139 edit_new := TCrossEdit.Create(Self); 139 140 with edit_new do … … 159 160 NoFocusAlignment := taLeftJustify; 160 161 Precision := 15; 161 Decimals := 4;162 Decimals := 14; 162 163 FocusWidthInc := 0; 163 164 EditType := etHex; -
oup/current/Tools/RawEdit.pas
r177 r180 540 540 if fs.Size <> hex.DataSize then 541 541 begin 542 if (not (CR_ResizeRaw in ConManager.Connection[ConnectionID].ChangeRights)) and (not (CR_AppendRaw in ConManager.Connection[ConnectionID].ChangeRights)) then 542 if 543 (not (CR_ResizeRaw in ConManager.Connection[ConnectionID].ChangeRights)) 544 and (not (CR_AppendRaw in ConManager.Connection[ConnectionID].ChangeRights)) 545 then 543 546 begin 544 547 ShowMessage('Can''t import ' + ExtractFilename(importd.FileName) +
Note:
See TracChangeset
for help on using the changeset viewer.