You are here

Multi Monitor Display problem

4 posts / 0 new
Last post
mar_kus
Offline
Last seen: 14 years 11 months ago
Joined: 2009-05-13 06:25
Multi Monitor Display problem

Hi,

in reply to this topic (replying isn't possible any more, i think because the post is too old) ... :
https://portableapps.com/node/4682

I have two monitors, and my taskbar is on the secondary monitor. clicking on portable apps taskbar icon, portable apps shows up on the primary monitor.

Delphi fully supports dual monitor setups so it should be no problem to fix this!

Example:

{get index of monitor with taskbar on it}
function GetMonitorWithTaskBarIndex: Integer;
var
I: Integer;
WorkArea: TRect;
AllMonitor: TRect;
begin
Result := 0;
for I := 0 to Screen.MonitorCount - 1 do
begin
WorkArea := Screen.Monitors[I].WorkareaRect;
AllMonitor := Screen.Monitors[I].BoundsRect;
if ((WorkArea.Right - WorkArea.Left)

ixe
Offline
Last seen: 3 years 9 months ago
Joined: 2012-02-03 03:05
*push*same problem here!I

*push*

same problem here!

I have 2 Monitors,
the primary 24" - right handed - gaming (fullscreen)
the secondary 22" - left handed - taskbar etc.

when i start Portable Apps, the PAM will open on the primary screen, because the Shortcut is on the taskbar (left screen) so i have to move the cursor to the other screen Sad its a poor user experience

an option, where the pam appears, if MM is detected could be very helpful!

// sry for my bad english, im kraut ^^

Tom-Ottawa
Tom-Ottawa's picture
Offline
Last seen: 11 months 1 day ago
Joined: 2023-03-19 19:51
Move the taskbar!

You can have a central taskbar (win10 & earlier) if you move your taskbar to the left side of the right screen or the right screen of the left monitor.
It will be a vertical column.

--
I wish downloads were faster

John T. Haller
John T. Haller's picture
Offline
Last seen: 1 hour 44 min ago
AdminDeveloperModeratorTranslator
Joined: 2005-11-28 22:21
Multi-Monitor Support Launched

Multi-monitor support has been released in PortableApps.com Platform 29.3

Sometimes, the impossible can become possible, if you're awesome!

Log in or register to post comments