알짜게시판

[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]

번호 제목 글쓴이 조회 날짜
228 [윈도우] 아이폰 벨소리 쉽게 추가하기 34,301 06-14
227 [윈도우] C:\Windows\Installer 폴더 다른 드라이브로 옮기기 45,946 05-29
226 작업 표시줄 (기타 시스템 트레이 아이콘) 제거 프로그램 54,812 05-18
225 [워드프레스] cdn.jsdelivr.net 에서 ssl 인증서 오류 문제 66,949 05-02
224 [그누보드] cdn.jsdelivr.net 에서 ssl 인증서 오류 문제 67,260 05-02
223 [PHP] REQUEST 값 받기(application/json 포함) 74,747 04-20
222 [Linux] 데몬(systemd service) 작성 및 실행하기 64,940 03-14
221 [PHP] Porto 테마에서 포스팅만 Loading Overlay 57,278 03-08
220 [그누보드] 아이디 대신 이메일로 회원 가입하기 80,932 02-02
219 [시크릿DNS] Kaspersky 백신 사용시 DNS 암호화 관련 4 97,403 01-04
218 [칼무리] 영역화면 크기 오류인 경우 111,902 12-12
217 [MySQL] 업데이트 이후 에러 발생([ERROR] Incorrect definition of table … 90,626 12-08
216 구글 크롬 탭검색 비활성화 71,421 12-04
215 [MySQL] MySQL, MariaDB 업데이트 72,964 11-24
214 [아이폰] HTTPS 감청 우회하기 150,564 11-01
213 Windows에 Rust 설치하기 56,701 10-05
212 HTTPS/DNS 차단 쉽게 이해하기 76,629 08-16
211 ChangeDNS - DNS 서버를 손쉽게 변경합니다. 74,668 08-13
210 [ReactNative] android directory was detected in the project. 64,853 07-20
209 [리눅스] 메일(Mail) 삭제/초기화 57,614 07-18
열람 [Delphi] 윈도우 알림센터에 메시지 출력하기 54,753 06-20
207 [그누보드] 사이드바 만들기 98,538 05-04
206 텔레그램 봇 (Telegram Bot) 만들기 37,460 05-03
205 [부트스트랩] nav 에서 하위 항목 활성화 시 부모 항목 활성화 34,521 04-30
204 [리눅스] PHP 버전 추가하기 34,181 04-29
203 [PHP] Curl 접속 속도가 늦은 경우 35,989 04-10
202 [윈도우] 파일 내용 검색 45,207 02-09
201 [MySQL] unblock with 'mysqladmin flush-hosts' 에러 53,221 01-01
200 [ReactNative] 캐시 초기화 하는 방법 56,058 12-27
199 killer 네트워크 이슈 팁 1 64,389 12-04
198 [윈도우] node.js 와 npm 업데이트(업그레이드) 56,951 12-01