How to hide a taskbar entry but keep the window form?
问题 I'd like to hide the taskbar entry to maximize effective space since the app has a systray icon, i dont need the taskbar entry. The app doesnt allow you to only have a systray instead of both. How can I hide a taskbar entry but keep the window form? 回答1: In what language is your application written? The API call you want is called SetWindowLong. Example Delphi code would be: procedure TForm1.FormCreate(Sender: TObject); begin ShowWindow(Application.Handle, SW_HIDE); SetWindowLong(Application