Tech Support > Microsoft Windows > Development Resources
SetupDi in Kernel Mode
Posted on July 21st, 2003 | 13 Comments

Still me, still disturbing you ! I tried to use the SetupDi functions inside a driver, but in order to use them, you must include the file "setupapi.h" It seems there is some problems with...

Re: creating a window within a dialog box
Posted on July 21st, 2003 | 0 Comments

For debugging purposes you might try to replace the window class with a more "common" one - if that works, the problem lies in your control. Good luck, Martijn

EnumDisplayMonitors
Posted on July 21st, 2003 | 0 Comments

Hello Everyone, I am trying to enumerate on the display devices supported by my display adapter, i have been succesfully able to detect two monitors on the adapter and have been able to report their...

Re: oddest behavior
Posted on July 21st, 2003 | 0 Comments

"Spikinsson" <not@gonna.tell.ya> wrote: At the time I used "CodeGuard", which came bundled free with (and integrated with) Borland C++Builder. Since then I've moved to Visual C++ and bought "Memory...

Re: oddest behavior
Posted on July 21st, 2003 | 0 Comments

"flintridgeparkenfarker vonkerschnauzerheiden III (joe)" wrote: Assuming that you are not sending messages from another thread, this kind of behavior is typical of a corrupted stack. If your call...

Re: creating a window within a dialog box
Posted on July 20th, 2003 | 0 Comments

"Allan Bruce" <allanmb@TAKEAWAYf2s.com> wrote: Looks fine to me. You didn't tell us what codes returned, so I'm guessing they all returned success. There's presumably a bug elsewhere in the program....

Re: stderr and stdout
Posted on July 20th, 2003 | 0 Comments

They already exist in your program? If so, something like freopen() or fclose()/fopen() could make then go to anywhere you want. Norm "gnoot" <me@privacy.net> wrote in...

Creating an opengl viewport in a dialog box
Posted on July 20th, 2003 | 9 Comments

Hello, A few days ago, I was asking how to paint into the dialog box, well I managed. Thanks to all those who helped. Now I want to create a small OpenGL viewport in it to display a sphere to help...

reading the textbox of another program
Posted on July 20th, 2003 | 3 Comments

I want to write a program that can read the text from a specific text box of another program. for example, such a program could read what I am writing now in this text box. I'm not sure what...

MS Visual C 6 -- code generation options
Posted on July 20th, 2003 | 6 Comments

Hi. I want to have MSVC 6 generate the "cmov" (conditional move) instruction when appropriate. Any command-line option or pragma or something to allow this? Thanks.

picking windows and regions from the screen
Posted on July 20th, 2003 | 1 Comments

I want to go into a modal state where the mouse can be used to either a) click/drag a region anywhere on the screen, or b) return the HWND of ANY window of any application that is clicked on. I'd...

Re: sizing "Wizard" - property sheets
Posted on July 19th, 2003 | 1 Comments

If you set the page's PSP_HIDEHEADER flag and don't set a watermark for the sheet, the entire area above the line should be available. I haven't tried this myself, so it might not work. "Shizuka"...

COM test cases
Posted on July 19th, 2003 | 0 Comments

Hi, I am in the process of writing a typelibrary importer that generates "headers" for a programming language, so COM components can be used in that language. I have it working already, in-process...

Re: RPC tutorial has bugs
Posted on July 19th, 2003 | 0 Comments

JeffK. wrote: Which are they (which functions)? Usually this means you have to include some libraries when linking. Which software are you using, I might be able to help you on how to do...

weird tab behaviour after minimize
Posted on July 19th, 2003 | 1 Comments

Hi, I have a Tab Control with two tabs. Those tabs are filled with two dialog boxes. This works fine, until the user minimizes the application. After the user maximizes the application again, one...

Emulating Dialong Keystrokes
Posted on July 19th, 2003 | 2 Comments

I am trying to write a program (source below) that will change the input focus to a Windows Dialog and emulate pressing the Tab and Enter keys. The program does change the input focus to the dialog...

Can't load dialog resource from outside DLL
Posted on July 19th, 2003 | 0 Comments

1813 The specified resource type cannot be found in the image file. What could cause this error? dllhinst is a validated instance handle of the dll IDD_DIALOG is in both the DLL as in the program 1...

file list control
Posted on July 18th, 2003 | 1 Comments

Hi, I am trying to make a filelist similar to that of windows explorer's right pane. I've checked the example shown by EnumDesk (in the Platform SDK samples), but I cannot figure out how to do the...

Re: skins
Posted on July 18th, 2003 | 1 Comments

"dg" <a@a.com> wrote in message news:vhf2lfdfvdnp57@corp.supernews.com... I would say that skin means that the application draws on it's dialog background. They may also modify the clipping...

Dialogs inside a DLL
Posted on July 18th, 2003 | 14 Comments

I'm trying to create a dialog which is stored inside a dll (dname2), everything compiles well, it loads the DLL well, and also the functions t_main and setthis, but it won't show the dialog! ::htab...