Thread overview
DMC++ and wxWindows
Feb 20, 2004
Walter
Feb 20, 2004
W³odzimierz Skiba
Feb 20, 2004
Walter
Feb 23, 2004
W³odzimierz Skiba
Feb 23, 2004
Walter
February 20, 2004
Any other outstanding issues?


February 20, 2004
"Walter" <walter@digitalmars.com> wrote in news:c14dso$qlq$1@digitaldaemon.com:

> Any other outstanding issues?

There is issue reported by me at "internal error with 8.38". I could duplicate it with 8.39 but couldn't with 8.40. Unfortunatelly nobody confirmed this (including me with other machine) and I had no time to focus on it. I have it on my todo and will investigate it later but have other important tasks. Sorry.

Ah, one more. See last three last posts at:
http://lists.wxwindows.org/cgi-bin/ezmlm-cgi?5:sss:44063
I myself have full DMC access so it is not issue related to me directly
thought maintaining test suit I worry for free version too. Is odbc32.lib,
rpcrt4.lib and winspool.lib supposed to exist in free 8.38 as Vaclav Slavik
suggested ?

ABX
February 20, 2004
"W³odzimierz Skiba" <abx@abx.art.pl> wrote in message news:c14jni$15vo$1@digitaldaemon.com...
> Ah, one more. See last three last posts at:
> http://lists.wxwindows.org/cgi-bin/ezmlm-cgi?5:sss:44063
> I myself have full DMC access so it is not issue related to me directly
> thought maintaining test suit I worry for free version too. Is odbc32.lib,
> rpcrt4.lib and winspool.lib supposed to exist in free 8.38 as Vaclav
Slavik
> suggested ?

I'll add them.


February 23, 2004
"Walter" <walter@digitalmars.com> wrote in news:c14dso$qlq$1@digitaldaemon.com:

> Any other outstanding issues?

Ok. DMC 8.40 and current wxWindows CVS which is supposed to be 2.5.1 builds library and exacutables fine. So let's try to collect problems with all the other problems reported by stuff suplied to wxWindows (samples, demos, utils, contrib).

1. The problem reported at bottom of http://www.digitalmars.com/drn-bin/wwwnews?c%2B%2B.wxwindows/144

2. RCC does not understand bitmaps correctly understood by all other resource compilers

  rcc .\wxrcedit.rc  -odmc_msw\wxrcedit_wxrcedit.res  -D__WXMSW__
    -I.\..\..\..\include -I.\..\..\..\lib\dmc_lib\msw -I.
    -I.\..\..\..\samples -I.\..\..\include -32 -v-
  open     BITMAP "bitmaps/open.bmp"
                                   ^
  .\wxrcedit.rc(6) : Error: 'bitmaps/open.bmp' is not a valid Windows 3.0
                     or OS/2 1.x bitmap

  preview  BITMAP "bitmaps/preview.bmp"
                                      ^
  .\wxrcedit.rc(7) : Error: 'bitmaps/preview.bmp' is not a valid Windows
                     3.0 or OS/2 1.x bitmap

  save     BITMAP "bitmaps/save.bmp"
                                   ^
  .\wxrcedit.rc(8) : Error: 'bitmaps/save.bmp' is not a valid Windows 3.0
                     or OS/2 1.x bitmap

3. Different behaviour in About dialog of STC sample.
http://sourceforge.net/tracker/index.php?func=detail&aid=902622&group_id=98
63&atid=109863
   (moreover DMC build of this sample crashes at exit)
   It needs further investigations.

That's all what I currently know.

ABX
February 23, 2004
"W³odzimierz Skiba" <abx@abx.art.pl> wrote in message news:c1cua2$1c2n$1@digitaldaemon.com...
> "Walter" <walter@digitalmars.com> wrote in news:c14dso$qlq$1@digitaldaemon.com:
>
> > Any other outstanding issues?
>
> Ok. DMC 8.40 and current wxWindows CVS which is supposed to be 2.5.1
builds
> library and exacutables fine. So let's try to collect problems with all
the
> other problems reported by stuff suplied to wxWindows (samples, demos,
> utils, contrib).
>
> 1. The problem reported at bottom of http://www.digitalmars.com/drn-bin/wwwnews?c%2B%2B.wxwindows/144

You can work around that by rewriting the casts to be old-style casts.

> 2. RCC does not understand bitmaps correctly understood by all other resource compilers
>
>   rcc .\wxrcedit.rc  -odmc_msw\wxrcedit_wxrcedit.res  -D__WXMSW__
>     -I.\..\..\..\include -I.\..\..\..\lib\dmc_lib\msw -I.
>     -I.\..\..\..\samples -I.\..\..\include -32 -v-
>   open     BITMAP "bitmaps/open.bmp"
>                                    ^
>   .\wxrcedit.rc(6) : Error: 'bitmaps/open.bmp' is not a valid Windows 3.0
>                      or OS/2 1.x bitmap
>
>   preview  BITMAP "bitmaps/preview.bmp"
>                                       ^
>   .\wxrcedit.rc(7) : Error: 'bitmaps/preview.bmp' is not a valid Windows
>                      3.0 or OS/2 1.x bitmap
>
>   save     BITMAP "bitmaps/save.bmp"
>                                    ^
>   .\wxrcedit.rc(8) : Error: 'bitmaps/save.bmp' is not a valid Windows 3.0
>                      or OS/2 1.x bitmap
>
> 3. Different behaviour in About dialog of STC sample.
>
http://sourceforge.net/tracker/index.php?func=detail&aid=902622&group_id=98
> 63&atid=109863
>    (moreover DMC build of this sample crashes at exit)
>    It needs further investigations.
>
> That's all what I currently know.
>
> ABX