Hello everybody, How can I enabled a service to interact with desktop in 2008 Windows server OS ? I have a MFC application which is run by being called by another service which its properties are localsystem and interact with desktop. It works fine at 2003 Windows server OS, but I face problems with 2008 Windows OS (NO GUI enable though I see it as a running process) Any clue how to let it enables the GUI ? I searched the internet and forums for any idea but with not much help. Please advice. Thanks in advance, Eyal
es1968
Posts
-
GUI enabled for service under windows 2008 -
Porting MFC exe to ATL service and MFC GUIHello, I have a multi threaded MFC exe built with all its basic classes including CSocket, with TCP connection through mainframe etc. , I want to split it to two different components. ATL service and MFC GUI. Can I do it and can I use the MFC classes in the ATL service. Thanks in advance, Eyal
-
MFC exe to ATL serviceHello, I have a multi threaded MFC exe built with all its basic classes including CSocket, with TCP connection through mainframe etc. , I want to split it to two different components. ATL service and MFC GUI. Can I do it and can I use the MFC classes in the ATL service. Thanks in advance, Eyal
-
multithreading class [modified]cmk, Thank you very much, Eyal
-
multithreading class [modified]Hi Moak, Just faced with this question in a C++ questioner/quiz. I read information/tutorials on multithreading mutex but I haven't deal yet with the answer. looking for the right answer. Best, Eyal
-
multithreading class [modified]Hi, I need help to write a multi thread simple class, I know this should be simple but I face some difficulties, any help will be appreciated. Implementing single-write, multiple-read multi thread synchronization (using windows synchronization primitives like mutex, semaphore etc.). Thanks in advance, Eyal
modified on Saturday, October 17, 2009 7:11 AM
-
Reference question in C++ [modified]Rajesh, Thanks a lot, Eyal
-
Reference question in C++ [modified]CPallini, Thanks a lot, Eyal
-
Reference question in C++ [modified]Hi Pallini, Thanks for your the answer, but I want to understand why after stage 6, str1 and strref have not been changed after str2 changed to "bb" ? It's important for me to understand this, probably I miss something. Best, Eyal
-
Reference question in C++ [modified]Hi all, The following question: 1)string str1 = "a"; 2)string str2 = "b"; 3)string& refstr = str1; printf("\n str1: %s,", str1.c_str()); printf("\n str2: %s,", str2.c_str()); printf("\n refstr: %s,\n ", refstr.c_str()); 4)str1 = "aa"; printf("\n str1: %s,", str1.c_str()); printf("\n str2: %s,", str2.c_str()); printf("\n refstr: %s,\n ", refstr.c_str()); 5)refstr = str2; printf("\n str1: %s,", str1.c_str()); printf("\n str2: %s,", str2.c_str()); printf("\n refstr: %s,\n ", refstr.c_str()); 6)str2 = "bb"; printf("\n str1: %s,", str1.c_str()); printf("\n str2: %s,", str2.c_str()); printf("\n refstr: %s,\n ", refstr.c_str()); displays after each stage : 3) str1: a str2: b refstr: a 4) str1: aa str2: b refstr: aa 5) str1: b str2: b refstr: b 6) str1: b, str2: bb, refstr: b, May I get an accurate explantion why this is the display for each stage ? Why after stage 6 the display is not bb for all ? Thanks in advance, Eyal
modified on Sunday, October 11, 2009 7:32 AM
-
Transfer AUDIO BUFFER to AUDIO STREAMHi there everyone, I will be very grateful to get any clue/direction about a problem, which I have on the last couple of days: How can I transfer a rough audio buffer to an audio streaming, I have looked at the sample of this subject in the MSDN and I saw a sample which works properly only with WAV file – I want to check it with a buffer. Thanks and Regards, Eyal