]> git.saurik.com Git - wxWidgets.git/blame - docs/msw/issues.txt
Fixed property list OnClose problem that caused Dialog Editor problem
[wxWidgets.git] / docs / msw / issues.txt
CommitLineData
2bda0e17
KB
1Current issues and bugs
2-----------------------
3
4fabb575
JS
4Memory-checking subsystem
5-------------------------
6
7This conflicts with wxUSE_IOSTREAMSH = 0 using MS VC++ 5.0
8(crashes the template code). It should be switched off if you
9wish to use wxUSE_IOSTREAMSH = 0.
10
3b1de9c2
JS
11BC++ in 16-bit mode
12-------------------
13
14resource.cpp has to be split into two to compile (hence
15resourc2.cpp). Unfortunately we still get the error:
16
17 Segment TEXT_RESOURCE exceeds 64K.
18
19The solution is probably to load wxResourceBitListTable
20dynamically using LoadString to load the names, and initialize the table
21at wxWindows start-up.
22
23Meanwhile the work-around is to switch wxUSE_WX_RESOURCES to 0
24(done in setup.h if BC++/16-bit mode is detected).
25
26See also:
27 http://www.inprise.com/devsupport/borlandcpp/ti_list/TI703.html
28 http://www.inprise.com/devsupport/borlandcpp/ti/TI1007.html
29