DETAILS: I am a new user. I downloaded setup.exe and setup.wXX then ran the install program. It prompted me for disk two which puzzled me. There was no obvious solution.
WORKAROUND: The problem seems to be that the default download name for the setup.wXX files is not 'setup.wXX' but instead 'setup.wXX..wXX' Every new user who installs could change these names... but why not simply change them on the server? (I was using IE 5 under Windows 98)
visitor_email_address: willdeans@mindspring.com
wxWINDOWS+VERSION: Current version as of 11-15-99
DATE+FIXED:
DATE+IDENTIFIED: 11-15-99
DETAILS: to recreate:
click "new dialog" several times
view the properties of a dialog box
DO NOT CLOSE THE PROPERTIES BOX
click on another dialog in the list
right click the new dialog and select view properties..... (THE PROPERTY BOX DOES NOT CHANGE EVEN THOUGH IT SHOULD!... BUT THIS IS NOT THE CRASH)
to make the crash click the Name property in the properties dialog box -- the application crashes
FIXED+BY:
IDENTIFIED+BY: William Deans
PLATFORMS: wxWindows
SHORT+DESCRIPTION: dialog editor CRASHES
Submit: Submit
WORKAROUND: be sure and close the properties box every time before switching to a new dialog... this might be hard to remember as the properties box does not stay in front of the dialog editor........ as I feel that it should
visitor_email_address: willdeans@mindspring.com
wxWINDOWS+VERSION: 2.1.11 (Current version as of 11-15-99)
DATE+FIXED:
DATE+IDENTIFIED: 11-15-99
DETAILS: to recreate:
click "Dialogs" folder to the left
select delete from the menu
FIXED+BY:
IDENTIFIED+BY: William Deans
PLATFORMS: wxWindows
SHORT+DESCRIPTION: Dialog Editor CRASHES (again)
Submit: Submit
WORKAROUND:
visitor_email_address: willdeans@mindspring.com
wxWINDOWS+VERSION: 2.1.11 (Current version as of 11-15-99)
DATE+FIXED:
DATE+IDENTIFIED: 11-15-99
DETAILS: to recreate:
go to properties (of any dialog)
select id
select ...
hit cancel
the property box hangs
FIXED+BY:
IDENTIFIED+BY: William Deans
PLATFORMS: wxWindows
SHORT+DESCRIPTION: Dialog Editor HANGS
Submit: Submit
WORKAROUND:
visitor_email_address: willdeans@mindspring.com
wxWINDOWS+VERSION: 2.1.11 (Current version as of 11-15-99)
DATE+FIXED:
DATE+IDENTIFIED: 11-15-99
DETAILS: to recreate:
put a space into the name field of the property box...... this should be disallowed, but is not
FIXED+BY:
IDENTIFIED+BY: William Deans
PLATFORMS: wxWindows
SHORT+DESCRIPTION: Dialog Editor Creates Files It Cannot Parse
Submit: Submit
WORKAROUND: each time a change is made to a dialog..... that section of the wxr file should be written to a buffer and re-parsed..... if the parsing fails the change should be disallowed
visitor_email_address: willdeans@mindspring.com
wxWINDOWS+VERSION: 2.1.11 (Current version as of 11-15-99)
DATE+IDENTIFIED: 26/11/1999
DETAILS: Around line 1234 or the common/docview.cpp file following code exists...
if (!theTemplate)
theTemplate=templates[FilterIndex] ;
The problem is tat FilterIndex is one based and the templates array is zero based. The correct
thing might be to use FilterIndex-1 as the index. Else the following scenario will
cause a crash.
1. Use the docvsmdi example
2. Bring up the file open dlg.
3. Select Files of Type "Text"
4. c:\autoexec.bat for file name
5. Press okay and you should see
the crash.
I understand that it is very
hard to figure out the template
when the user does not select
one of the known extensions but
this simple fix might atleast
avoid the crash....
I started playing with wxMSW
just this morning and have not
yet figured out exactly how to
submit a fix. I atleast wanted
to report it. Besides what I do
for the MSW might not be correct
for the other platforms :-)
Note from JACS: fixed (I hope) by making m_filterIndex
zero-based in MSW wxFileDialog implementation
(it's zero-based in wxGTK/the generic dialog).
IDENTIFIED+BY: Haneef Mohammed
PLATFORMS: wxMSW
SHORT+DESCRIPTION: Bug in wxDocTemplate::SelectDocumentPath()
DETAILS: wxWindows 2 installer simply replaces msv(i)crt.dll. MUST ONLY overwrite if newer!!! Apart from that: the libraries provided are from VC6Sp1 and are known to be buggy!
FIXED+BY:
IDENTIFIED+BY: Klaus Richter
PLATFORMS: wxMSW
SHORT+DESCRIPTION: Windows Installer problem
Submit: Submit
WORKAROUND: Dlls from at least Sp2 (better 3) are needed (read MSDN KB Q190536)!
visitor_email_address: richter@secude.com
wxWINDOWS+VERSION: 2.1.11
DATE+FIXED:
DATE+IDENTIFIED: 18/01/2000
DETAILS: I tested wxWindows/GTK+ with a simple example which
uses frame, menu, and statusbar. But when I selected
a menu item which creates a simple 'about dialog'
several times, the program crashed with segmentation fault.
I traced it with gdb, and I got this message:
Program received signal SIGSEGV, Segmentation fault
0x408f1796 in match_theme_image ()
from /usr/lib/gtk/themes/engines/libpixmap.so
I guessed from this message that the pixmap routine in
GTK+ theme engine caused crash. So, I changed GTK+ theme
to default which doesn't use any pixmaps and tested