comp.os.mswindows.programmer.win32
  Home FAQ Contact Sign in
comp.os.mswindows.programmer.win32 only
 
Advanced search
December 2007
motuwethfrsasuw
     12 48
3456789 49
10111213141516 50
17181920212223 51
24252627282930 52
31       1
2007
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007    
total
comp.os ... win32 Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  What's the windows equivalent, if any, to fork()         


Author: Andrew Falanga
Date: Dec 10, 2007 15:36

Well, I can't think of much else to say in the body. The subject says
it all.

Andy
5 Comments
  ANN: Seed7 Release 2007-12-10         


Author: thomas.mertes
Date: Dec 10, 2007 14:10

Hello,

I have released a new version of Seed7: seed7_05_20071210.tgz

In the Seed7 programming language new statements and operators
can be declared easily. Types are first class objects and therefore
templates/generics need no special syntax. Object orientation is
used when it brings advantages and not in places when other
solutions are more obvious.

Seed7 is covered by the GPL (and LGPL for the Seed7 runtime library).

Changelog:
- The interpreter was improved to flag match errors only once
instead of multiple times.
- The graph.s7i library was improved to define the type pointList
and the function genPointList ...
Show full article (1.50Kb)
no comments
  Re: Class wizard not generating stdafx.h         


Author: GopalaPK
Date: Dec 10, 2007 14:09

On Dec 11, 2:45 am, Zapanaz <http://joecosby.com/code/mail.pl> wrote:
> I have programmed in c and c++ for years but I am just introducing
> myself to the Windows API and MFC.
>
> I'm using Microsoft Visual C++, version 6.0
>
> I started on MFC with this tutorial
>
> http://www.codersource.net/samples/mfc_tutorial_5.zip
>
> To make a long story short ... I edited a dialog box resource, saved
> it, then went through the class wizard to create a new class.
> Basically step by step through that web page. It generated
> NewDialog.cpp and NewDialog.h, but didn't generate stdafx.h or
> script3.h . (The resource is named script3).
>
> I googled on this, stdafx.h and the resource header file are
> apparently supposed to be generated by
> the class wizard, I wasn't able to find anybody else with the same
> problem, does anybody know what might be causing this (a project ...
Show full article (1.69Kb)
no comments
  Re: Beginner WINAPI means the same as CALLBACK?         


Author: r_z_aret
Date: Dec 10, 2007 10:45

On Sun, 9 Dec 2007 09:00:04 -0800 (PST), tonyjeffs
googlemail.com> wrote:
>
>are interchangeable.
>Do CALLBACK and WINAPI mean exactly the same thing?
>Where can I find definitions for them on the web?

If you enable browsing when you build (probably need to enable it in
two places in Visual Studio), then you can right click on either one
and choose to see the definition. You will see the macro as it is
defined in your header (.h) files. Or you can search for such terms in
your header files. If you really want to use the Internet, you can use
google advanced group search
(http://www.google.com/advanced_search?hl=en) to look up
callback winapi
I just did and got 12,300 hits. Two of the very first were for this
thread. But another one of the first few looks relevant and useful.
>
>Thanks
>tony
Show full article (1.08Kb)
no comments
  Sorted List Box ... Sordid Tale!         


Author: Bob Masta
Date: Dec 10, 2007 07:42

It seems that the standard LBS_SORT is pretty
weird for non-alphanumerics. I was looking for
a char that would sort later than 'z' in the list,
and the *only* one is '[' (0x5B), even considering all
byte values up to 0xFF. All control chars and
other low-ASCII symbols sort to the top, while
values from 0x80 to 0xFF appear in various odd
positions.

Anyone know what's up with this?

Using the '[' will work for my needs, but it sure seems
strange. I guess the only issue for me would be if
Microsoft uses another sort mechanism in other
Windows versions. (Only tested XP so far.)

Best regards,

Bob Masta
Show full article (0.81Kb)
2 Comments
  Re: Cop-out or valid for M-Audio to say they "don't support" their card running with XP MCE?         


Author: Mike Rivers
Date: Dec 10, 2007 04:23

On Dec 9, 9:04 pm, Doc yahoo.com> wrote:
> I had a question about my M-Audio Audiophile 2496. It's running under
> XP Media Center. M-Audio replied that they don't support any of their
> hardware with this O/S.
> The card works like a champ as far as I can tell. Their response is
> "this doesn't mean you won't experience full functionality but we
> don't support it".
> Do they know whether their card works with this O/S or don't they?
> Can someone clarify what the rationale behind this is?

XP Media Center was a very short-lived version and M-Audio is a
relatively small company. Most of their customers for products like
yours are at least semi-professionals who wouldn't be caught dead
using a computer running Media Center. While they may have tested the
card with MC when that version of Windows was first released, they
don't keep up with updates and don't now or care if Microsoft makes
changes to the OS that might make the M-Audio driver incompatible.
Show full article (1.27Kb)
9 Comments
  WM_message going to undesired windows         


Author: Bob
Date: Dec 10, 2007 03:27

My program has a number of windows that process messages through "WndProc"
function.

Then I have another windows that has is own "WndProc2" function for message
processing. I also have a few edit control which has "EditProc" for message
processing.

The problem is that when focus is on an edit control the all windows get
WM_KEYDOWN etc. message when I want them to "EditProc". What should I do or
check?
no comments