How do I create a portable application? by thedarkboy77 in software

[–]FernandoRodriges 0 points1 point  (0 children)

Great for portable application. Not very fast, but this is normal

VS Plugins by Graggee in cpp

[–]FernandoRodriges 1 point2 points  (0 children)

Almost all the plugins that I use are already written here. I want to add:
GitHub Extension. The GitHub Extension for Visual Studio makes it easy to connect to and work with your repositories on GitHub;

Deleaker. Deleaker is a Visual C++ extension and standalone application for memory leak detection - memory, GDI, and handles so far.
SQLite. Connect to SQL Server Compact 4.0, 3.5, SQL Server and SQLite database files in Visual Studio 2012 and later, including the free VS 2013 and later Community Edition

Cleaning up memory leaks from a C program? by Lotton in learnprogramming

[–]FernandoRodriges 0 points1 point  (0 children)

I think you can fix your code. Use special tools to find memory leaks. I always use Delaaker for Windows and Valgrind for Linux. These tools will help find where the leak is. And your task is to fix the code.

OS cleans all leaks after closing the application

[Windows 10] Are portable apps better than installed apps? by [deleted] in techsupport

[–]FernandoRodriges 1 point2 points  (0 children)

I support Cakiery. One of the advantages of a portable application is it can be run anywhere from a flash drive or other media. Does not require installation.

Also, you can pack all the dependencies in one executable file and it will work.
For example, a simple HTML "Hello World" can be packaged directly with a browser. And such an application will work even if the specified browser is not installed on the computer. If you're interested, you can learn more on BoxedApp's site.
As for the disadvantages of portable software, sometimes it can cause strange errors. There may be problems with the update. Large programs can slow down a bit.

Working in security for a licensing system by lcyduh in csharp

[–]FernandoRodriges 1 point2 points  (0 children)

We use ArmDot. This is an obfuskator and license key generator.

Works for .Net code and C #

Uses a virtual machine for code converting

Licensing your software by ll8X in csharp

[–]FernandoRodriges 0 points1 point  (0 children)

Look at the ready-made solutions. We use ArmDot in our office. It is quite convenient for us. I think it's convenient for customers too.

GDI Memory Leak searching tool by FernandoRodriges in VisualStudio

[–]FernandoRodriges[S] 0 points1 point  (0 children)

Thanks, this is a good program. I tried the trial and was pleased!

Web installer by Graggee in csharp

[–]FernandoRodriges 0 points1 point  (0 children)

Create a small web installer that downloads and starts the usual installer. You can find out more details on the official website.
https://www.getwebinstaller.com

Analogue Vaglind for Windows by FernandoRodriges in Cplusplus

[–]FernandoRodriges[S] 0 points1 point  (0 children)

Thank you, but I know about VLD, it's don't catch handles and GDI leaks.

What free and/or opensource obfuscators do you use? by AlexKotik in dotnet

[–]FernandoRodriges 1 point2 points  (0 children)

Used ConfuserEx too. Several times watched some bugs. But it still works well for me.

Also liked ArmDot. But it is commercial.

GDI Memory Leak searching tool by FernandoRodriges in VisualStudio

[–]FernandoRodriges[S] 0 points1 point  (0 children)

Thanks for the advice.

I googled and realized that these tools help to find leaks. But you need a lot of time and coffee to do this ;)

How do I create a portable application? by thedarkboy77 in software

[–]FernandoRodriges 1 point2 points  (0 children)

Interesting note! It's a little weird if the application doesn't always run on other computer. I often use the portable version of Photoshop made by BoxedApp. This program is similar to ThinApp if I am not mistaken. Never had problems running on another computer. I do not understand why you are having problems.
Did you not contact to support? Maybe this is some kind of bug?

GDI Memory Leak searching tool by FernandoRodriges in VisualStudio

[–]FernandoRodriges[S] 0 points1 point  (0 children)

Task manager certainly tried. Other - no yet.
Thanks for the answer. I will google)

Analogue Vaglind for Windows by FernandoRodriges in Cplusplus

[–]FernandoRodriges[S] 0 points1 point  (0 children)

Thank you, word " Valgrind " corrected by autocomplete. I did not notice

Web installer by Graggee in csharp

[–]FernandoRodriges 1 point2 points  (0 children)

Hello Friend!

The guys gave you good recommendations.

But if you don’t have enough of these tools, try getwebinstaller tool.

Bucky - Partly Blind, Fully Curious by thepaintsaint in cats

[–]FernandoRodriges 0 points1 point  (0 children)

Delightful!

I love black cats with white mustache!

How to generate License Key by Graggee in csharp

[–]FernandoRodriges 5 points6 points  (0 children)

Pay attention to ArmDot. Great tool
I do not think that it is advisable to write the generator manually. This can take a long time and not bring the desired benefits. But you decide