1
vote
2answers
92 views
Stop an application from being terminated, without entering the correct password? c#
Hi guys,
I was just wondering is there anyway to stop application being terminated at all without a password being entered. Is it even possible? I've seen net nanny type applications do it so that …
2
votes
1answer
73 views
C/C++ Copy file with automatic recursive folder/directory creation
In Win32 API, there is CopyFile that literally copies a file. However, this API doesn't create folders. For example, I'd like to copy C:\Data\output.txt to D:\Temp\Data\output.txt. But, the target …
3
votes
3answers
100 views
Using unicode font in c++ console app
How do I change the font in my c++ windows console app? It doesn't seem to use the font cmd.exe uses by default(Lucida Console). When i run my app through an existing cmd.exe (typing name.exe) it …
2
votes
4answers
160 views
waveOut (Win32API) and multithreading
Hi
I cannot find any information about the thread-safety of the waveOut API.
After i creating new waveOut handle, i have those threads:
Thread 1: Buffers handling. Uses those API functions:
…
2
votes
1answer
32 views
Closing a modal popup from vb.net?
Hi, I want to wait for and close a modal form (a popup) from another application, as soon as it appears. I want to do this from VB.NET, but suggestions in C# should be easily translateable.
I can …
1
vote
1answer
43 views
Critical Sections that Spin on Posix?
The Windows API provides critical sections in which a waiting thread will spin a limited amount of times before context switching, but only on a multiprocessor system. These are implemented using …
1
vote
3answers
35 views
is there any way to draw a png image on window without using MFC
Dear All,
I am developing a win32 application without using MFC.
I am using standard windows libraries.
Please let me know how to draw png image on a window.
help me with some sample code
I have …
4
votes
8answers
293 views
Double buffer common controls
Hello :)
Is there a way to double-buffer the common controls? Currently when they resize they flicker. A lot.....
EDIT: If it helps, it is a bunch of button controls and a few edit controls, all …
1
vote
3answers
40 views
Marshal.AllocHGlobal VS Marshal.AllocCoTaskMem, Marshal.SizeOf VS sizeof()
Hi.
I have the following struct:
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
public struct WAVEHDR
{
internal IntPtr lpData; // pointer to locked data buffer
internal …
0
votes
4answers
104 views
How to draw Windows 7 taskbar like Shaded Buttons
Windows 7 taskbar buttons are drawn on a shaded background. The color shade somehow reacts on where the mouse is over the button.
I'd like to use such buttons in my application. How can i do that ?
0
votes
1answer
61 views
Create thread with specific privilege c++
hello
I have multi-thread application that I want to create a thread with different user privilege (for example : multi domain admin privilege).
but I can't find any Win32 API CreateThread to do …
0
votes
1answer
47 views
Showing printer properties in VB6
There is some old code in one of our VB6 apps that is supposed to show printer properties when the user clicks a button. When the app was first written (in the days of Win 98/2000), this code worked …
1
vote
1answer
78 views
Updating text in a C Win32 API STATIC control drawn with WS_EX_TRANSPARENT
I have window with some STATIC labels and BUTTONs on it.
I make all the LABELS transparent background so I can make the background RED say.
In the CALLBACK i process the WM_CTLCOLORSTATIC message, …
0
votes
1answer
99 views
How to add picture box in win32 API using visual c++
I have a Window (win32 API) Application in visual c++. I am not using MFC. I have to add a picutre box to my application and Change the image of this picture box periodically. Can any one help me out …
0
votes
2answers
80 views
Difference between WinMain and wWinMain
The only difference is that Winmain takes char* for lpCmdLine parameter, while wWinMain takes wchar_t*.
On Windows XP, if an application entry is WinMain, does Windows convert the command line from …
