Click here to Skip to main content
15,905,590 members
Home / Discussions / C#
   

C#

 
GeneralRe: A way to overlay a transparent image on the screen that does not respond to the mouse. Pin
Dave Kreskowiak1-May-17 14:06
mveDave Kreskowiak1-May-17 14:06 
GeneralRe: A way to overlay a transparent image on the screen that does not respond to the mouse. Pin
Richard MacCutchan1-May-17 20:43
mveRichard MacCutchan1-May-17 20:43 
QuestionCrystal Report installation File missing Error and Run time file loading error Pin
Member 1253182629-Apr-17 9:47
Member 1253182629-Apr-17 9:47 
AnswerRe: Crystal Report installation File missing Error and Run time file loading error Pin
CHill6029-Apr-17 9:55
mveCHill6029-Apr-17 9:55 
AnswerRe: Crystal Report installation File missing Error and Run time file loading error Pin
OriginalGriff29-Apr-17 21:33
mveOriginalGriff29-Apr-17 21:33 
GeneralRe: Crystal Report installation File missing Error and Run time file loading error Pin
Richard Andrew x6430-Apr-17 9:26
professionalRichard Andrew x6430-Apr-17 9:26 
QuestionHow to fill DataGridView Cells on cellvaluechanged in MYSQL in C#? Pin
TatsuSheva28-Apr-17 23:33
TatsuSheva28-Apr-17 23:33 
SuggestionRe: How to fill DataGridView Cells on cellvaluechanged in MYSQL in C#? Pin
CHill6029-Apr-17 2:32
mveCHill6029-Apr-17 2:32 
AnswerRe: How to fill DataGridView Cells on cellvaluechanged in MYSQL in C#? Pin
User 418025429-Apr-17 3:01
User 418025429-Apr-17 3:01 
QuestionHOW I CAN MOVE LIGHT POINT FROM POINT TO POINT IN TIME Pin
Member 1315403828-Apr-17 21:16
Member 1315403828-Apr-17 21:16 
AnswerRe: HOW I CAN MOVE LIGHT POINT FROM POINT TO POINT IN TIME Pin
Richard MacCutchan28-Apr-17 21:33
mveRichard MacCutchan28-Apr-17 21:33 
AnswerRe: HOW I CAN MOVE LIGHT POINT FROM POINT TO POINT IN TIME Pin
OriginalGriff28-Apr-17 21:50
mveOriginalGriff28-Apr-17 21:50 
QuestionHow can I use serialize and Deserialize to realize Store Function when update code? Pin
smallkubi27-Apr-17 16:03
smallkubi27-Apr-17 16:03 
AnswerRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
Richard MacCutchan27-Apr-17 21:53
mveRichard MacCutchan27-Apr-17 21:53 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
smallkubi28-Apr-17 2:47
smallkubi28-Apr-17 2:47 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
Richard MacCutchan28-Apr-17 3:05
mveRichard MacCutchan28-Apr-17 3:05 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
smallkubi28-Apr-17 18:00
smallkubi28-Apr-17 18:00 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
Richard MacCutchan28-Apr-17 21:28
mveRichard MacCutchan28-Apr-17 21:28 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
smallkubi28-Apr-17 22:33
smallkubi28-Apr-17 22:33 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
Richard MacCutchan28-Apr-17 22:40
mveRichard MacCutchan28-Apr-17 22:40 
QuestionPrint number of copies depending on the textbox input and put page numbers C# Pin
de winta26-Apr-17 21:40
de winta26-Apr-17 21:40 
QuestionScreensaver denied access to process/window list ? Pin
andymo221-Apr-17 11:12
andymo221-Apr-17 11:12 
Hello all,

I have a (personal) screensaver that shows particular content based on what applications are running. Under Win10 the program runs perfectly when executed directly (ie. running the exe), however when the program is executed from Windows10 (via screensaver trigger) the application can no longer enumerate Process windows.

Specifically:

If i use the following code snippet:

C#
using System.Diagnostics;
 
Process[] processlist = Process.GetProcesses();
 
foreach (Process process in processlist)
{
    if (!String.IsNullOrEmpty(process.MainWindowTitle))
    {
        Console.WriteLine("Process: {0} ID: {1} Window title: {2}", process.ProcessName, process.Id, process.MainWindowTitle);
    }
}


and run the application I get a proper list of open windows. But if the SAME application is launched as a screensaver, the above code produces nothing. Never had this issue under Win7 or previous.

Does anyone have any idea what might be happening ?

Thanks in advance,
Andy
GeneralRe: Screensaver denied access to process/window list ? Pin
Eddy Vluggen21-Apr-17 12:30
professionalEddy Vluggen21-Apr-17 12:30 
GeneralRe: Screensaver denied access to process/window list ? Pin
andymo222-Apr-17 2:56
andymo222-Apr-17 2:56 
GeneralRe: Screensaver denied access to process/window list ? Pin
Richard MacCutchan22-Apr-17 21:01
mveRichard MacCutchan22-Apr-17 21:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.