알짜게시판

[Delphi] 윈도우 알림센터에 메시지 출력하기

uses 에 System.Notification 을 추가합니다.

[code]
procedure SetNotification(Content: String);
var
  NotifiCenter: TNotificationCenter;
  Notification: TNotification;
begin
  NotifiCenter := TNotificationCenter.Create(nil);
  Notification := NotifiCenter.CreateNotification;
  try
    Notification.Name := Application.Title;
    Notification.Title := Application.MainForm.Caption;
    Notification.AlertBody := Content;

    NotifiCenter.PresentNotification(Notification);
  finally
    Notification.Free;
    NotifiCenter.Free;
  end;
end;

SetNotification('알람알람!!!');
[/code]

로그인 후 댓글내용을 입력해주세요

번호 제목 글쓴이 조회 날짜
210 [ReactNative] android directory was detected in the project. 65,349 07-20
209 [리눅스] 메일(Mail) 삭제/초기화 58,199 07-18
열람 [Delphi] 윈도우 알림센터에 메시지 출력하기 55,422 06-20
207 [그누보드] 사이드바 만들기 105,459 05-04
206 텔레그램 봇 (Telegram Bot) 만들기 38,076 05-03
205 [부트스트랩] nav 에서 하위 항목 활성화 시 부모 항목 활성화 34,900 04-30
204 [리눅스] PHP 버전 추가하기 34,596 04-29
203 [PHP] Curl 접속 속도가 늦은 경우 36,578 04-10
202 [윈도우] 파일 내용 검색 45,678 02-09
201 [MySQL] unblock with 'mysqladmin flush-hosts' 에러 53,694 01-01
200 [ReactNative] 캐시 초기화 하는 방법 57,246 12-27
199 killer 네트워크 이슈 팁 1 64,874 12-04
198 [윈도우] node.js 와 npm 업데이트(업그레이드) 57,377 12-01
197 [윈도우] 윈도우11 시작 메뉴 위치 변경(가운데, 왼쪽) 60,409 10-10
196 [Delphi] 중복 실행 방지 58,855 09-21
195 [리눅스] yum 에서 Thread died in Berkeley DB library 오류 58,953 09-18
194 [리눅스] VNSTAT 설치하기 56,022 09-17
193 [리눅스] 로그 삭제 및 비우기(?) 58,040 09-09
192 [Delphi] 파일 포맷 알아내기 51,237 09-08
191 [FTP] 500 Illegal PORT command. 47,378 09-03
190 [리눅스] .htaccess 를 이용해서 https 이동하기 45,286 08-31
189 [PHP] Imagek 를 이용한 썸네일 생성 45,714 08-26
188 [PHP] 파일 포맷 알아내기 45,469 08-23
187 [그누보드] 1364 : Field 'xxxxx' doesn't have a default value 45,174 08-20
186 [그누보드] 웹폰트 적용하기 46,199 08-13
185 [그누보드] CKEditor 5 플러그인 106,961 08-11
184 [리눅스] 윈도우 프로그램 실행 (centos7, wine 7.0) 44,960 08-09
183 [시크릿DNS] 프록시 혼합 사용 예제 1 420,587 08-07
182 [윈도우] IPv6 켜기, 끄기 44,928 08-03
181 [그누보드] 회원 가입일 기준으로 이용기간 정하기 41,095 07-28
180 [그누보드] sql_fetch, sql_query 안쓰고 직접 mysql 사용하기 40,707 07-24