Tech Support > Microsoft Windows > Development Resources
Balloon direction
Posted on March 19th, 2007 | 0 Comments

Hello all, In my application, I open a TRACK balloon tooltip. It works fine, but the problem is that the arrow of the balloon in TRACK mode points upward, the reverse of the arrow in automatic mode!...

Multiline Listview header
Posted on March 19th, 2007 | 1 Comments

See http://www.codeproject.com/listctrl/headerctrlex.asp -- it's MFC-based, but it shouldn't be too hard to adapt to whatever framework you're using. "abhi" <dearabhi@gmail.com> wrote in...

Record user actions - like automation type programs
Posted on March 19th, 2007 | 1 Comments

Angus wrote on 18/03/2007 21:53: 'Hooks' are probably what you need. Bavo.

Wimgapi.dll
Posted on March 19th, 2007 | 0 Comments

We've been developing software recently that uses the new Windows deployment library (wimgapi.dll / imagex.exe). The software makes Windows Vista images in WIM file format similar to the Microsoft...

Send keystrokes to a "low-level IO" DOS application in ntvdm.exe
Posted on March 19th, 2007 | 7 Comments

Hi Gary, thanks a million, I added in the wScan parameter (with the mapped virtual key code) to my sendInput call, lo and behold the characters appeared in my DOS window. Much obliged for the advice,...

Composing Emails using mailto and other ways
Posted on March 19th, 2007 | 1 Comments

No one? Any ideas? I am sure that you can add at least some information so that a satisfying solution will come out in the end!! Regards, Chris On 15 Mrz., 15:56, chrismc...@hotmail.com wrote:

How to write a program to track the value of a certain variable at run-time using debug features???
Posted on March 19th, 2007 | 0 Comments

Hello everyone, I'm totally new to the group and I would like to learn from you. Thank you in advance! I need to write a program to track whether a mathematical function has changed during run-time...

Reading motherboard info...
Posted on March 18th, 2007 | 3 Comments

In article <1173953749.349727.73160@n76g2000hsh.googlegroups.com>, jithuspeaks@gmail.com says... This can, unfortunately, be a bit unpredictable. MS provides a mechanism that's can provide a lot of...

What file structure for this type of data ?
Posted on March 17th, 2007 | 1 Comments

"cnlai" <cnlai@pc.jaring.my> wrote in message news:etdnbj$1frh$1@news9.jaring.my... If you're using an index (e.g. a B+ tree), I would call that a 'database'. With no database (for my conception of...

Learn a foreign language with mneumonics
Posted on March 17th, 2007 | 0 Comments

Hey everyone check out the utility I programmed that's hosted on my website: http://www.ckoogle.com It is called Davinci's Sort Utility, and you can find the source to it in php on usenet if you...

Setting working directories when coding a Windows Service in C
Posted on March 17th, 2007 | 1 Comments

"Simon" <simon@sgurr.theredwire.co.uk> wrote in message news:45fbd797$0$756$bed64819@news.gradwell.net... chdir(), eg. chdir("c:\\program files\\foo"); spawnl(P_NOWAIT,"c:\\program...

Strangle HINSTANCE constant
Posted on March 17th, 2007 | 2 Comments

chrismc911@hotmail.com wrote: Thanks.

How to get XP style of widget?
Posted on March 16th, 2007 | 3 Comments

Enrique, I think you need the "Using ComCtl32 Version 6 in an Application That Uses Extensions, Plug-ins, or a DLL That Is Brought into a Process" option. Dave

local time <-> UTC conversion
Posted on March 15th, 2007 | 2 Comments

"Jason S" <jmsachs@gmail.com> wrote in message news:1173965305.355504.317280@y66g2000hsf.googlegroups.com... I had this problem and ended up writing my own code to address it. If you are...

Convert ReadConsoleInput to real characters
Posted on March 15th, 2007 | 0 Comments

I am writing a program that uses ReadConsoleInput to get keyboard input. Is there a "normal" way to convert the INPUT_RECORD into a fully converted keycode? For example, if a press Shift-7 (the &...

Record and playback functionality
Posted on March 15th, 2007 | 1 Comments

Angus wrote: Each edit box has a unique (within the parent window context) control Id, which you can get with GetWindowLong. -- Scott McPhillips

Desktop Screen Shot
Posted on March 15th, 2007 | 1 Comments

Jawad Rehman wrote: GetDC(NULL); BitBlt() -- Grzegorz Wróbel http://www.4neurons.com/ 677265676F727940346E6575726F6E732E636F6D

Print Online from Console Application
Posted on March 15th, 2007 | 7 Comments

Lucida Courier did the trick. Thanks again...

Waitforsigleobject problem
Posted on March 14th, 2007 | 2 Comments

io@uunet2.com wrote: That is because the caller application is waiting and not checking it's window message queue while waiting for Notepad to close. In this case I would suggest the...

Asm statements in C
Posted on March 14th, 2007 | 3 Comments

Hi It is okay that the compiler doesn't support ASM directly. What you can do, is simply construct the ASM code on the fly. 1. virtual alloc and change protection to allow execution 2. generate...