zipgenius
zipgenius
When you run an app with MultiChoiceAdapter in a Gingerbread device, the selection doesn't work as expected: if you check the first item, it gets deselected when you check a...
I've just updated WinUIEx from 1.5.0 to 1.8.0 but my application crashes on startup and this is what I get. I tried to downgrade WinUIEx from 1.8.0 to 1.7.0 and...
Hello. I'm trying to parse a feed from my website, which is encoded in ISO-8859-1 and uses accented characters (which are very common in Italian language). The parser throw an...
Your HexView is great and it would really be nice to have a WinUI or a UNO version. Would you consider these conversions?
Just as an "Add Folder" is already available, why not including an "Add File" icon, both outlined and filled?
I have the following code that is trying to add files from a FileOpenPicker to an **existing** zip archive `... var sFiles = await pickerFiles.PickMultipleFilesAsync(); List files = new List();...
Listing all files from SevenZipExtractor's ArchiveFileData collection gives every detail about any file entry. However it just reports the unpacked size of a file and not its packed size. Will...
I'm using the following code to obtain a list of archive entries through SevenZipExtractor in a UWP app: `foreach (ArchiveFileInfo entry in szFile.ArchiveFileData) { Debug.WriteLine(entry.FileName); }` All I get is...
`foreach(Entry entry in inFile.Entries) if (!entry.IsFolder) table.AddRow(entry.FileName, entry.Size, entry.PackedSize,entry.Ratio,entry.CRC.ToString("X8")); ` Can I right-align Column 1 and Column 2 to right while adding data this way? It's not clear if it...