I have a problem with Panda and Japbe
Japbe freeze when i open the procedure About.... if i desactviate Panda JAPBE works well.
Has somone had this problem ? if yes how did it solve it
JAPBE AND PANDA SOFTWARE
It would be a pity! Pandas are sooo cute...ricardo wrote:Delete Panda from your PC
Greetings ... Kiffi
P.S.: What is Panda?
Hygge
A Antivirus Program, so good that you can never work on your pcKiffi wrote:P.S.: What is Panda?

PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

- DoubleDutch
- Addict
- Posts: 3220
- Joined: Thu Aug 07, 2003 7:01 pm
- Location: United Kingdom
- Contact:
Panda is one of the best anti-virus programs. Pity there is a conflict.
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
https://reportcomplete.com <- School end of term reports system
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
Re: JAPBE AND PANDA SOFTWARE
jaPBe.exe is packed with PECompact2, hence the (false) alarm I guess ...KIKI wrote:I have a problem with Panda and Japbe
Japbe freeze when i open the procedure About.... if i desactviate Panda JAPBE works well.
Has somone had this problem ? if yes how did it solve it
Maybe panda antivirus software throws an alarm because it is unable to unpack it (unlike other av software).
Panda is most probably the largest scientology company in the worldKiffi wrote:What is Panda?

For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
One of the things that keeps puzzling me is this drive for packed executables. I can understand you want the installable to be as small as possible, but why would you pack an executable? Isn't that slowing down loading and execution of the program?
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
-
- PureBasic Expert
- Posts: 4229
- Joined: Sat Apr 26, 2003 8:27 am
- Location: Strasbourg / France
- Contact:
From PECompact website :blueznl wrote:One of the things that keeps puzzling me is this drive for packed executables. I can understand you want the installable to be as small as possible, but why would you pack an executable? Isn't that slowing down loading and execution of the program?
Why would one want to compress an executable/module?
There are many reasons. One of the most common is that compression offers an inherent degree of tamper resistance and obfuscation. Another is that since the usual compression ratio is greater than 70% (that is, the compressed file is 30% of the original), larger executables and modules may load much quicker from the network or disk hosting them. Since storage medium is often the largest bottleneck in overall system performance, the time spent decompressing can be much less than the time saved by not having to load as much data from the storage medium.
Add tamper resistance.
Obfuscate and help deter reverse engineering.
Compression is typically 70% or greater on large files, far better than popular file compression software. This is because compression is targeted to a specific file/data format.
Load time can be improved by having a smaller image to load from the storage medium (disk, network, etc..).
For free libraries and tools, visit my web site (also home of jaPBe V3 and PureFORM).
They key word here is 'may'...may load
I've just done two quick tests, and the difference between packed and unpacked was absolutely marginal on my machine (in fact, I think the unpacked one loaded even faster). Could be my raid 0 raptors, but I think modern hardware is a lot faster than in the past... even on the disk side.
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
-
- Enthusiast
- Posts: 469
- Joined: Sun Mar 16, 2008 9:18 am
It doesn't slow down loading, in fact it loads faster because the byte size on disk is so much smaller. And on USB sticks this smaller speed makes it load and run WAY faster. Unpacking is usually around 99% of realtime speed, so it's no big deal. Packing = good.blueznl wrote:One of the things that keeps puzzling me is this drive for packed executables. I can understand you want the installable to be as small as possible, but why would you pack an executable? Isn't that slowing down loading and execution of the program?
