Changeset 819 for cprs/branches/tmg-cprs/CPRS-Chart/fNotes.pas
- Timestamp:
- Jul 2, 2010, 7:54:17 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/branches/tmg-cprs/CPRS-Chart/fNotes.pas
r809 r819 369 369 procedure SetEditorFocus; //kt 370 370 function EditorHasText : boolean; //kt 371 procedure ChangeToNote(IEN : String; ADFN : String = '-1'); //kt 6/26/10 371 372 public 372 373 HtmlEditor : THtmlObj; //kt 8/09 … … 594 595 TX_AUTH_SIGNED := DKLangConstW('fNotes_Author_has_not_signedx_are_you_SURE_you_want_to_signx') +CRLF; 595 596 end; 596 597 597 598 var 598 599 uPCEShow, uPCEEdit: TPCEData; … … 1611 1612 // another object (say a prior THtmlObj) has become active and already 1612 1613 // changed the handler, then there will be a problem. So probably best 1613 // to create them all at on e. //kt1614 // to create them all at once. //kt 1614 1615 HtmlViewer := THtmlObj.Create(pnlHTMLViewer,Application); 1615 1616 HtmlEditor := THtmlObj.Create(pnlHTMLEdit,Application); … … 1705 1706 if FEditNote.Lines = nil then FEditNote.Lines := TStringList.Create; //kt 8/09 1706 1707 Note := FEditNote.Lines; //kt 8/09 1707 {pnlWrite.Visible := True; //kt 8/091708 pnlRead.Visible := False; } //kt done in SetHTMLorTextEditor //kt 8/091709 1708 mnuViewDetail.Enabled := False; 1710 1709 if (FEditNote.IDParent <> 0) and (not FNewIDChild) then … … 4894 4893 4895 4894 procedure TfrmNotes.mnuSearchNotesClick(Sender: TObject); 4895 //kt added 4896 4896 begin 4897 4897 inherited; 4898 4898 Application.CreateForm(TfrmPtDocSearch, frmPtDocSearch); 4899 frmPtDocSearch.ShowModal; 4900 //open diff note it selected 4899 if frmPtDocSearch.ShowModal > -1 then begin 4900 //open diff note it selected 4901 4902 end; 4901 4903 frmPtDocSearch.Free; 4902 4904 end; 4905 4906 procedure TfrmNotes.ChangeToNote(IEN : String; ADFN : String = '-1'); 4907 //kt added 6/26/10 4908 //Effect changing note by simulating a notification click. 4909 begin 4910 end; 4911 4903 4912 4904 4913 initialization
Note:
See TracChangeset
for help on using the changeset viewer.