Thread overview
Weird display default right beneath the menu bar
Jan 14, 2004
Denis Crespe
Jan 15, 2004
Jan Knepper
May 25, 2004
Walter
May 27, 2004
W³odzimierz Skiba
Aug 03, 2004
Ilya Minkov
Jan 15, 2004
chris elliott
January 14, 2004
Hello,

I compile the wxWindows 2.4.2's samples and they work well but I get stuck with a small display default right under the menu bar : there is a more or less broken blue line as you can see on the picture enclosed.

This happens in every samples so I thought someone may help me fix this issue. I compiled the wx's samples a long time ago with VC++ and I don't remember having seen this.

Thanks for you help,
Denis



January 15, 2004
Make sure you have a .def file and are using it while linking with the following:

NAME		"<YourAppName>"
DESCRIPTION	'<YourAppDescription'
EXETYPE		NT
SUBSYSTEM	WINDOWS,4.0
STUB		'WINSTUB.EXE'
CODE		 EXECUTE READ
DATA		 READ WRITE
STACKSIZE	1048576,4096
HEAPSIZE	1048576,4096

Or, if you are using the IDDE, make sure you target Windows 95!



Denis Crespe wrote:

> Hello,
> 
> I compile the wxWindows 2.4.2's samples and they work well but I get stuck
> with a small display default right under the menu bar : there is a more or
> less broken blue line as you can see on the picture enclosed.
> 
> This happens in every samples so I thought someone may help me fix this
> issue. I compiled the wx's samples a long time ago with VC++ and I don't
> remember having seen this.
> 
> Thanks for you help,
> Denis
> 
> 
> 


-- 
ManiaC++
Jan Knepper

But as for me and my household, we shall use Mozilla... www.mozilla.org
January 15, 2004
Denis Crespe wrote:

> Hello,
> 
> I compile the wxWindows 2.4.2's samples and they work well but I get stuck
> with a small display default right under the menu bar : there is a more or
> less broken blue line as you can see on the picture enclosed.
> 
> This happens in every samples so I thought someone may help me fix this
> issue. I compiled the wx's samples a long time ago with VC++ and I don't
> remember having seen this.
> 
> Thanks for you help,
> Denis
> 
> 
> 
I have seen this with other compilers too
chris

May 25, 2004
"Jan Knepper" <jan@smartsoft.us> wrote in message news:bu51eh$ael$2@digitaldaemon.com...
> Make sure you have a .def file and are using it while linking with the following:
>
> NAME "<YourAppName>"
> DESCRIPTION '<YourAppDescription'
> EXETYPE NT
> SUBSYSTEM WINDOWS,4.0
> STUB 'WINSTUB.EXE'
> CODE EXECUTE READ
> DATA READ WRITE
> STACKSIZE 1048576,4096
> HEAPSIZE 1048576,4096
>
> Or, if you are using the IDDE, make sure you target Windows 95!

I've added this to the FAQ: www.digitalmars.com/faq.html#subsystem


May 27, 2004
"Walter" <newshound@digitalmars.com> wrote in news:c8ufq1$24ib$1@digitaldaemon.com:
> > Or, if you are using the IDDE, make sure you target Windows 95!
> 
> I've added this to the FAQ: www.digitalmars.com/faq.html#subsystem

Thanks, I've asked for introducing this to Bakefiles: http://cvs.sourceforge.net/viewcvs.py/bakefile/bakefile/rules/makefile_defs_dmars_common.bkl?r1=1.3&r2=1.1

ABX
August 03, 2004
W³odzimierz Skiba schrieb:
> "Walter" <newshound@digitalmars.com> wrote in
> news:c8ufq1$24ib$1@digitaldaemon.com: 
> 
>>>Or, if you are using the IDDE, make sure you target Windows 95! 
>>
>>I've added this to the FAQ: www.digitalmars.com/faq.html#subsystem 
> 
> 
> Thanks, I've asked for introducing this to Bakefiles:
> http://cvs.sourceforge.net/viewcvs.py/bakefile/bakefile/rules/makefile_defs_dmars_common.bkl?r1=1.3&r2=1.1 
> 
> ABX

apparently this works also as command-line option to the linker:

/exet:nt/su:windows:4.0

-eye