Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Neues Problem:

Ich hab mein Programm aus der Taskleiste in den Tray verbannt, und zwar so:

procedure TfrmMyProgram.FormShow(Sender: TObject);

begin

  ShowWindow(Application.Handle, SW_HIDE);

  with TrayIcon do begin

    cbSize := SizeOf(TrayIcon);

    Wnd := Handle;

    uID := 0;

    uFlags := NIF_ICON or NIF_MESSAGE or NIF_TIP;

    uCallbackMessage := IC_CLICK;

    hIcon := Application.Icon.Handle;

    szTip := 'Mein Programm';

  end;

  Shell_NotifyIcon(NIM_ADD, @TrayIcon);

end;
Nun will ich bei einem bestimmten Ereignis das Icon ändern, sodass man sieht, dass etwas passiert ist. Ich hab schon das hier versucht:
var

  MyIcon: TIcon;

begin

  MyIcon.LoadFromFile('MyIcon.ico'); <-- IconDatei im Project-Verzeichnis

  TrayIcon := MyIcon.Handle;

end;

Das Icon ändert sich nicht, und wenn ich das Fenster öffne, kann ich es nicht mehr minimieren! Was mache ich falsch?

Ich Depp! Das hab ich auch gemacht, aber vergessen, es hinzuschreiben, so:

var

  MyIcon: TIcon;

begin

  MyIcon.LoadFromFile('MyIcon.ico'); <-- IconDatei im Project-Verzeichnis

  TrayIcon.hIcon := MyIcon.Handle;

  Shell_NotifyIcon(NIM_MODIFY, @TrayIcon);

end;

Es klappt so aber nicht. TrayIcon ist global.

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.