Ignore:
Timestamp:
May 8, 2015, 7:52:55 AM (9 years ago)
Author:
healthsevak
Message:

Committing the files for first time to this new branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/HealthSevak-CPRS/VA/VAUtils.pas

    r829 r1693  
    11unit VAUtils;
    2 
     2                       
    33{TODO  -oJeremy Merrill -cMessageHandlers : Change component list to use hex address for uComponentList
    44search instead of IndexOfObject, so that it used a binary search
     
    1919function ShowMsg(const Msg, Caption: string; Icon: TShow508MessageIcon = smiNone;
    2020                    Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
    21 
     21function Show508Message(const Msg: string): TShow508MessageResult;
    2222function ShowMsg(const Msg: string; Icon: TShow508MessageIcon = smiNone;
    2323                    Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
     
    281281    smiError:     Caption := ' Error';
    282282    smiQuestion:  Caption := ' Inquiry';
     283    smiInfo:      Caption := ' Information';
    283284  end;
    284285  Caption := Application.Title + Caption;
    285286  Result := ShowMsg(Msg, Caption, Icon, Buttons);
    286287end;
     288
     289function Show508Message(Const Msg: String): TShow508MessageResult;
     290begin
     291  Result := ShowMsg(msg);
     292end;
     293
    287294
    288295procedure FreeAndNilTStringsAndObjects(var Strings);
Note: See TracChangeset for help on using the changeset viewer.