View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0006695 | JEDI Code Library | JclCompression | public | 2020-06-02 14:04 | 2020-06-02 14:04 |
| Reporter | nosek1969 | Assigned To | |||
| Priority | normal | Severity | major | Reproducibility | always |
| Status | new | Resolution | open | ||
| Product Version | |||||
| Target Version | Fixed in Version | ||||
| Summary | 0006695: 7z problem compress large file | ||||
| Description | I use TJcl7zCompressArchive when I have compress big file more 3gb or more, I tested 100mb (text) - work fine 200mb (bin) - work fine or not work, showing "out of resources" or nothing - application frezze, not stress cpu 3gb (bin) - not work, showing "out of resources" or nothing - application frezze, not stress cpu void __fastcall TForm1::BitBtn1Click(TObject *Sender) { std::unique_ptr<TJcl7zCompressArchive>Compression(new TJcl7zCompressArchive("Archive.7z", 0, false)); Compression->AddFile("AddToArchiwe.xml", "AddToArchiwe.xml"); // Compression->OnProgress = SevenZipOnProgress; Compression->Compress(); } // --------------------------------------------------------------------------- void __fastcall TForm1::SevenZipOnProgress(TObject *Sender, const long long Value, const long long MaxValue) { Memo1->Lines->AddPair("MaxValue", IntToStr(MaxValue)); double corect = (double)60000 / (double)MaxValue; ProgressBar1->Position = corect * (double)Value; } // --------------------------------------------------------------------------- windows 64 7z.dll 32 bit aplication 32 bit 7z - v 19.00 IDE 10.4 | ||||
| Tags | No tags attached. | ||||
| Fixed in GIT commit | |||||
| Fixed in SVN revision | |||||
| IDE version | 10.3 | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2020-06-02 14:04 | nosek1969 | New Issue |