1
vote
0answers
2 views
How to lock pages in memory using WinAPI?
I need to prevent application's memory pages from being swapped out of RAM on Windows. Is there a WinAPI function equivalent of POSIX mlockall() to achieve that?
0
votes
0answers
3 views
How to make a Windows Service terminate when one of its sub-threads terminate
in the ServiceStart() call of a windows service, I create a thread and start it.
Thread1 = New TThread1(false)
In the Execute procedure of the subthread, there is a loop that runs forever and does …
0
votes
0answers
1 views
Make a tkinter window appear over all other windows
#!/usr/bin/env python
# Display window with toDisplayText and timeOut of the window.
from Tkinter import *
def showNotification(notificationTimeout, textToDisplay):
## Create main window
…
3
votes
4answers
74 views
Detecting application hang
I have a very large, complex (million+ LOC) Windows application written in C++. We receive a handful of reports every day that the application has locked up, and must be forcefully shut down.
While …
0
votes
0answers
17 views
How to use HTTPS with HttpReceiveHttpRequest()?
I'm using the Windows HTTP API to process web service requests in C++ (not .NET) and everything works just fine for HTTP requests. When I change the URLs I'm expecting with HttpAddUrl to …
1
vote
3answers
42 views
Disable Control+Alt+Delete without modifying GINA?
How do I disable Ctrl+Alt+Delete sequence without modifying GINA or just blocking out Task manager?
0
votes
3answers
27 views
Installing Fabric On Windows (Error No Module Called Readline)
I'm trying to use the Fabric 0.1.1 deploy tool (http://docs.fabfile.org/) on Windows and we're running into an issue with the readline module. I've been through various threads but can't seem to …
0
votes
1answer
7 views
Handling streamed data via pipes
A Win32 application (the "server") is sending a continuous stream of data over a named pipe. GetNamedPipeInfo() tells me that input and output buffer sizes are automatically allocated as needed. The …
0
votes
0answers
7 views
Concerned with footerrow in gridview
hi guys,
I have following gridview.
<asp:GridView ID="gvMarks" runat="server" AutoGenerateColumns="false"
DataKeyNames="MarkId" Width="80%" onrowdatabound="gvMarks_RowDataBound"
…
0
votes
2answers
28 views
If Service Exists Condition
How would you check if a WIN32 service exists and, if so, do some operation?
1
vote
5answers
108 views
Writing concurrently to a file
I have this tool in which a single log-like file is written to by several processes.
What I want to achieve is to have the file truncated when it is first opened, and then have all writes done at the …
0
votes
1answer
12 views
Windows Workflow Foundation 4.0 and Persistence
I'm using Visual Studio 2010 Beta 2 to learn to use Workflow Foundation (WF) version 4.0 prior to the upcoming release of Visual Studio 2010. One thing I've noticed is that if I persist a Workflow in …
1
vote
1answer
33 views
GStreamer or DirectShow for Windows development?
I'm implementing a lecture-capture project for a local university. Multiple video streams will arrive at one PC: the presenter's desktop slides, a video camera image of the presenter himself and …
0
votes
0answers
12 views
C# How do I disable interactive login for a local user account. Similar to Network Service account
I've created a special user account for my applications use, and I need to know how to disable the interactive login feature so that it's only available as a system account. Right now any machine I …
1
vote
1answer
22 views
Client side http proxy in ruby
What is a good approach to a client proxy written in ruby that I can use to create a custom filter.
So far I've found
Ruby Proxy using webrick
Mousehole, a scriptable Ruby proxy by _why (UPDATE …
