Ignore:
Timestamp:
Feb 1, 2010, 7:07:59 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

Fixed New Note-Template Tab Key issue

Location:
cprs/branches/tmg-cprs/CPRS-Chart/TMG_Extra/HTMLEdit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/tmg-cprs/CPRS-Chart/TMG_Extra/HTMLEdit/TMGHTML2.pas

    r654 r698  
    6060      FEditable:               boolean;       
    6161      ColorDialog:             TColorDialog;       
    62       AllowNextBlur :          boolean;     
    63       procedure SetMsgActive (Active : boolean);
     62      AllowNextBlur :          boolean;
    6463      function  GetHTMLText:string;
    6564      procedure SetHTMLText(HTML:String);
     
    9190    public
    9291      {end public}
    93       PopupMenu:     TPopupMenu;     
     92      PopupMenu:     TPopupMenu;
    9493      KeyStruck : boolean; // A VERY crude determiner as to if Modified.
    9594      NextControl : TWinControl;
    9695      PrevControl : TWinControl;
    97       constructor Create(Owner:TControl; Application : TApplication);
     96      procedure SetMsgActive (Active : boolean);
     97      constructor Create(Owner:TControl; Application : TApplication);
    9898      destructor Destroy; override;
    99       procedure Clear;       
     99      procedure Clear;
    100100      procedure ToggleBullet;
    101101      procedure ToggleItalic;
  • cprs/branches/tmg-cprs/CPRS-Chart/TMG_Extra/HTMLEdit/TMGHTML2.~pas

    r654 r698  
    891891    KeyTime.HighPart := KeyPressTime.dwHighDateTime;
    892892    Delta := floor( (NowTime2.QuadPart - KeyTime.QuadPart) / 100000);
    893     Result := (Delta < 100);
     893    Result := (Delta < 100) and (Delta > 0);
    894894  end;
    895895
Note: See TracChangeset for help on using the changeset viewer.