Changeset 1693 for cprs/branches/HealthSevak-CPRS/VA
- Timestamp:
- May 8, 2015, 7:52:55 AM (10 years ago)
- Location:
- cprs/branches/HealthSevak-CPRS/VA
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cprs/branches/HealthSevak-CPRS/VA/VAUtils.pas
r829 r1693 1 1 unit VAUtils; 2 2 3 3 {TODO -oJeremy Merrill -cMessageHandlers : Change component list to use hex address for uComponentList 4 4 search instead of IndexOfObject, so that it used a binary search … … 19 19 function ShowMsg(const Msg, Caption: string; Icon: TShow508MessageIcon = smiNone; 20 20 Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload; 21 21 function Show508Message(const Msg: string): TShow508MessageResult; 22 22 function ShowMsg(const Msg: string; Icon: TShow508MessageIcon = smiNone; 23 23 Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload; … … 281 281 smiError: Caption := ' Error'; 282 282 smiQuestion: Caption := ' Inquiry'; 283 smiInfo: Caption := ' Information'; 283 284 end; 284 285 Caption := Application.Title + Caption; 285 286 Result := ShowMsg(Msg, Caption, Icon, Buttons); 286 287 end; 288 289 function Show508Message(Const Msg: String): TShow508MessageResult; 290 begin 291 Result := ShowMsg(msg); 292 end; 293 287 294 288 295 procedure FreeAndNilTStringsAndObjects(var Strings);
Note:
See TracChangeset
for help on using the changeset viewer.