Mark Billig
Members-
Content Count
18 -
Joined
-
Last visited
Community Reputation
0 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Thank you. I better learn to read better.
-
I have attached the code. About.dfm About.pas MFUnit.dfm MFUnit.pas SetDPI.dpr
-
I am using 11.3 and have tried that but it did not start in the system tray. I will do more testing.
-
Is there a way to start an application in the system tray?
-
Thank you for your assistance. I changed to PROCESS_QUERY_LIMITED_INFORMATION and it is working. I thought I had changed it before but I must not have. // hProcess := OpenProcess(PROCESS_QUERY_INFORMATION or PROCESS_VM_READ, False, PID); hProcess := OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, False, PID);
-
I am attaching the code I have at this time. I am using CreateToolhelp32Snapshot and GetModuleFileNameEx. MFUnit.pas
-
I am trying to create a list of applications that are running and visible, similar to Windows "Task Manager" in simple view. I have been successful except for applications that are running elevated. I am trying to get the "File Description" property and as long as I can get the file name and path I can get the description. Is there a way to get the file description directly or a way to get the name and path of an elevated application? I have been searching but everything I have come across so far does not work.
-
Thank you for the guidance. It appears I should learn how to use Copilot and Chat AI.
-
Thank you for your post. My problem is understanding C to convert and fully understand what needs to be done.
-
I am looking to get a list of desktop icons with their descriptions and positions. Any help appreciated.
-
Thank you. It took me a bit to find it but it seems to fix the issue. PingChart.View3DOptions.ZoomText := ztNo;
-
I have a program that uses TeeChart and when recompiled with Delphi 12.1 the font size of the left and bottom axis labels are larger. Everything else seems fine and I can fix it by adding code to change the font. Any ideas what has caused this? Thanks, Mark
-
https://github.com/mbillig02/APS
-
I got it figured out. One of the problems was the WindowReticle was configured CanResize = False. Thank you again for all of your help. I need to post my updates to GitHub.
-
Thank you.