Search found 7 matches

by todinaca
Mon Oct 28, 2019 2:06 pm
Forum: General Development
Topic: Unzipping large files
Replies: 2
Views: 1469

Re: Unzipping large files

We did the same thing as you did, we upgraded to version 3.1.2 and the zip files now work. We wanted to stay on the newest stable release, but we will move to 3.1.2 to solve this issue.

We were using the last 'stable' release.

Thanks
by todinaca
Tue Oct 22, 2019 9:59 pm
Forum: General Development
Topic: Unzipping large files
Replies: 2
Views: 1469

Unzipping large files

We are trying to unzip a large zip file, it contains an 8 gig file, and some smaller files. However, the unzip process stops after the large file, and keeps the large file open. The zip file does unzip using winzip executable, so we do not think it is an issue with the zip file. reading zip stream (...
by todinaca
Thu Apr 18, 2019 1:31 pm
Forum: C++ Development
Topic: Use a wxBitmapButton on a wxFilePickerCtrl/wxDirPickerCtrl
Replies: 2
Views: 443

Re: Use a wxBitmapButton on a wxFilePickerCtrl/wxDirPickerCtrl

Thank you - request has been posted to the mailing list.
by todinaca
Thu Apr 18, 2019 1:03 pm
Forum: C++ Development
Topic: Use a wxBitmapButton on a wxFilePickerCtrl/wxDirPickerCtrl
Replies: 2
Views: 443

Use a wxBitmapButton on a wxFilePickerCtrl/wxDirPickerCtrl

We would like to be able to use a wxBitmapButton on a wxFilePickerCtrl/wxDirPickerCtrl. The only way we have found this is able to be done is to modify the wxWidgets code itself, we could not determine how to override any method or derive from any class that would allow a wxBitmapButton on the picke...
by todinaca
Thu Sep 27, 2018 5:39 pm
Forum: C++ Development
Topic: Custom tree control
Replies: 2
Views: 643

Custom tree control

Can wxWidgets do something like the following with a wxDataViewCtrl? The Bars | were added to add indentation. We would hope the modified tree control could be something like the below, when the US National Change of Address would be clicked [ X] US National Change of Address (all items untl Deliver...
by todinaca
Fri Aug 31, 2018 8:44 pm
Forum: C++ Development
Topic: DataViewCtrl difference between 3.1 and 3.04
Replies: 2
Views: 507

Re: DataViewCtrl difference between 3.1 and 3.04

This seems to have solved the issue Added the following line after the Custom Renderer was added to the column. m_DataChoiceRenderer->SetOwner(wxDataViewColumn of column it was added) There is code in RenderText that does a GetOwner->GetOwner, and the owner of m_DataChoiceRenderer was NULL. Anyway, ...
by todinaca
Fri Aug 31, 2018 6:50 pm
Forum: C++ Development
Topic: DataViewCtrl difference between 3.1 and 3.04
Replies: 2
Views: 507

DataViewCtrl difference between 3.1 and 3.04

I'm experimenting with the existing dataview sample code using the MyMusicTreeModel methods as a base. What I would like to do is create a custom renderer, then based upon the values that are appropriate for the row in the tree list control, show a different type of control in the same column. In th...