Tech Support > Microsoft Windows > Development Resources
solve deadlock
Posted on February 8th, 2007 | 2 Comments

"Jenny" <jean.shu@gmail.com> wrote in message news:1170814297.501360.232280@q2g2000cwa.googlegroups.com... Simply said the solution is planning of code so that you never get syncronisation object B...

Netapi32
Posted on February 8th, 2007 | 4 Comments

Thanx to all you guys, after some additional brainstorming we found the solution. The problem was not the mixing of the runtimes. The problem lies in conflicts with CRT-Objects accross dll-...

OpenProcess Failure on Vista
Posted on February 7th, 2007 | 1 Comments

<peet.morris@gmail.com> wrote in message news:1170856249.041386.153940@v45g2000cwv.googlegroups.com... Does the code inspect the value of GetLastError() and display a meaningful message as to why...

Help favourites
Posted on February 7th, 2007 | 0 Comments

Does anyone know where Visual C++ version 6.0 stores its help favourites. Over the years I have found quite a number of what I regard as useful notes which are otherwise difficult to find, and...

Threads and Modules
Posted on February 7th, 2007 | 2 Comments

"James Brown" <email@viahomepage.com> wrote in message news:ab6dnRGxdZ1_ElTYnZ2dnUVZ8sqjnZ2d@pipex.net... Generally true. But if you find out at which address the DLL is loaded (LoadLibrary), it's...

Injected Right Shift
Posted on February 7th, 2007 | 1 Comments

Finally found something that let me work around the issue. Apparently the key comes in from the keyboard with the LLKHF_EXTENDED flag set. If you try to inject the key with the extended flag set...

Where is the Profile?
Posted on February 6th, 2007 | 2 Comments

John Carson wrote: Thanks John: That does it. Larry

CreateProcess spwaning a batch file versus spawning an exe
Posted on February 6th, 2007 | 3 Comments

Another important point: When adding an environment variable to an environment block, make sure that the environment block is still in alphabetical order. Some processes become unhappy if this is...

Search
Posted on February 6th, 2007 | 1 Comments

"PRAVIN" <pravin691983@gmail.com> wrote in message news:1170409338.836618.93870@j27g2000cwj.googlegroups.com... Firstly this is a Win32 API newsgroup, not concerned much with the .NET . But anyway,...

Performance Profiling with VC6 on XP.
Posted on February 6th, 2007 | 1 Comments

"Larry Lindstrom" <nobody@aracnet.com> wrote in message news:S_-dnWWAvNRrPFrYnZ2dnUVZ_oipnZ2d@comcast.com... I know nothing about makefiles, but selecting profile in the IDE adds /profile to the...

ask Vista for system privileges
Posted on February 6th, 2007 | 2 Comments

Erick Engelke wrote: Self restart you application by means of ShellExecute and the "runas" parameter: if ( ! IsUserAnAdmin() ) { char szAppPath; GetModuleFileName(NULL, szAppPath,...

Understanding radio buttons
Posted on February 6th, 2007 | 4 Comments

On Feb 5, 12:46 am, "John Carson" <jcarson_n_o_sp_...@netspace.net.au> wrote: Thanks, That worked. My game is now done. It can be...

Detect new process without polling or DLL
Posted on February 5th, 2007 | 3 Comments

"James Brown" <email@viahomepage.com> wrote in message news:sfadnd6TvaPbbVvYnZ2dnUVZ8qSnnZ2d@pipex.net... Jugdish, you don't want to write a driver for this. Some reasons to avoid drivers if not...

Issues in using FindFirstPrinterChangeNotification and associated APIs.
Posted on February 5th, 2007 | 2 Comments

"Pankaj" <pnkjadlakha@gmail.com> wrote in message news:1170676713.300589.259130@h3g2000cwc.googlegroups.com... Let's try... Do print manager in windows show the pages approprately? If not,...

win32: each socket in its own thread ?
Posted on February 5th, 2007 | 1 Comments

On Sat, 3 Feb 2007 05:05:29 +0100, "Coca Smythe" <dontwantspamhot@mailspamnothx.com> wrote: IOCP, you'll only need one thread (or as many threads as processors that you have). It scales great. I...

implementing VPN client
Posted on February 5th, 2007 | 5 Comments

DLL Modal Dialog Conflict with Host
Posted on February 5th, 2007 | 0 Comments

Hi All, I have this awful hack to a problem and I am back trying to find a good solution. Here's the situation... I have a DLL (plug-in) that creates modal dialogs when a user clicks on a button....

Seed7 Release 2007-02-04
Posted on February 4th, 2007 | 0 Comments

Hello, I have released a new version of Seed7: seed7_05_20070204.tgz In the Seed7 programming language new statements and operators can be declared easily. Types are first class objects and...

Should GetTextExtentPoint32 correctly measure treeview item text?
Posted on February 4th, 2007 | 2 Comments

On Feb 3, 12:25 pm, Norman Bullen <n...@BlackKittenAssociates.com.INVALID> wrote: Thanks so much. It worked exactly as you said. When I get the font the TreeView control is using and select it...

Windows and worker threads etc
Posted on February 4th, 2007 | 4 Comments

In article <eq04es$rko$1$8300dec7@news.demon.co.uk>, nospam@gmail.com says... The only WaitFor* function that you should normally use in a GUI thread is MsgWaitForMultipleObjects. Ocassionally,...