알짜게시판

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

번호 제목 글쓴이 조회 날짜
63 [그누보드] SmartEditor2Skin.html 다운로드 되는 현상 11,341 01-08
62 [PHP] 검색 로봇 접속시 종료 55,624 10-07
61 [리눅스] PHP-FPM 튜닝을 위한 메모리 계산 40,622 08-29
60 [윈도우] 아이폰 벨소리 쉽게 추가하기 93,465 06-14
59 [윈도우] C:\Windows\Installer 폴더 다른 드라이브로 옮기기 103,973 05-29
58 [PHP] REQUEST 값 받기(application/json 포함) 98,574 04-20
57 [Linux] 데몬(systemd service) 작성 및 실행하기 65,435 03-14
56 [MySQL] 업데이트 이후 에러 발생([ERROR] Incorrect definition of table … 91,206 12-08
55 구글 크롬 탭검색 비활성화 71,908 12-04
54 [MySQL] MySQL, MariaDB 업데이트 73,354 11-24
53 [아이폰] HTTPS 감청 우회하기 217,033 11-01
52 Windows에 Rust 설치하기 57,193 10-05
51 [ReactNative] android directory was detected in the project. 65,232 07-20
50 [리눅스] 메일(Mail) 삭제/초기화 58,084 07-18
열람 [Delphi] 윈도우 알림센터에 메시지 출력하기 55,310 06-20
48 텔레그램 봇 (Telegram Bot) 만들기 37,970 05-03
47 [부트스트랩] nav 에서 하위 항목 활성화 시 부모 항목 활성화 34,830 04-30
46 [리눅스] PHP 버전 추가하기 34,525 04-29
45 [PHP] Curl 접속 속도가 늦은 경우 36,487 04-10
44 [윈도우] 파일 내용 검색 45,576 02-09
43 [MySQL] unblock with 'mysqladmin flush-hosts' 에러 53,629 01-01
42 [ReactNative] 캐시 초기화 하는 방법 57,121 12-27
41 [윈도우] node.js 와 npm 업데이트(업그레이드) 57,304 12-01
40 [윈도우] 윈도우11 시작 메뉴 위치 변경(가운데, 왼쪽) 60,326 10-10
39 [Delphi] 중복 실행 방지 58,789 09-21
38 [리눅스] yum 에서 Thread died in Berkeley DB library 오류 58,829 09-18
37 [리눅스] VNSTAT 설치하기 55,955 09-17
36 [리눅스] 로그 삭제 및 비우기(?) 57,900 09-09
35 [FTP] 500 Illegal PORT command. 47,260 09-03
34 [리눅스] .htaccess 를 이용해서 https 이동하기 45,211 08-31
33 [PHP] Imagek 를 이용한 썸네일 생성 45,646 08-26
목록