Jump to content

toe_head2001

Administrator
  • Posts

    5,016
  • Joined

  • Last visited

  • Days Won

    155

Posts posted by toe_head2001

  1. 1 hour ago, BlastOfBN said:

    I'm not sure why it's telling me that the Virus & Threat protection is managed by my "organization"

     

    This is just a setting in the Windows Registry.

    I assume Avast enable the setting, and it was never turned back off during the Avast uninstall.

     

    You can simply delete that setting from the Registry.

    https://answers.microsoft.com/en-us/windows/forum/all/your-virus-threat-protection-is-managed-by-your/279c6d56-927b-43bf-912b-99e1bdd608d4

  2. 19 minutes ago, BlastOfBN said:

        inject_x64.dll                                   C:\Program Files\ByteFence\rtop\bin\inject_x64.dll, version=1.2

        aswhook.dll                                      C:\Program Files\AVAST Software\Avast\aswhook.dll, version=23.8.8416.0

        aswAMSI.dll                                      C:\Program Files\AVAST Software\Avast\aswAMSI.dll, version=23.8.8416.0

        ashShell.dll                                     C:\Program Files\AVAST Software\Avast\ashShell.dll, version=23.8.8416.810

     

    Is ByteFence or AVAST interfering with file saving?

    Can you disable these, and see if it makes a difference?

  3. 6 minutes ago, Bandit12345 said:

    You can clearly see the redesigned one is much easier on the eyes

     

    Umm, that's debatable.  It is less blinding-white, if that's what you mean.

    A Dark Mode icon would be cool though.

     

    9 minutes ago, Bandit12345 said:

    but now paint.net hangs for several minutes before opening.

     

    That doesn't sound related to a custom icon.

    Please post the diagnostic information found within paint.net.

     

    Settings -> Diagnostics -> Copy to clipboard.

     

    SettingsDiagnostics.png

     

  4. 7 minutes ago, AnneYusual said:

    Is it the pdn-project-templates-for-vs-master?

     

    That filename sounds like it would be the VSIX source code for my templates. Which will be of no use to you.

     

    22 minutes ago, AnneYusual said:

    So, what exactly do I need to do to run my code?

     

    Once your plugin is compiled, ensure the DLL file has been copied into the Effects directory of Paint.NET.

    Then you can start Paint.NET with the Visual Studio debugger.

    Proceed to open your plugin from the Effects menu within Paint.NET.

    When your plugin is run, your breakpoints in Visual Studio will break. (assuming the code path is executed)

  5. 2 hours ago, its_a_sine said:

    I'm pretty sure the fix is to somehow separate the file path and the file name into separate variables so the filename may be modified freely, then concatenate them at the end of the operation before writing but I've never worked with PDN plugins or .NET before; i just figured out how to install codelab this morning.

     

    Hi,

    If you want to play with it, here's some example code for you.

     

    string fullPath = @"C:\users\user.name\Documents\test.png";
    string directory = Path.GetDirectoryName(fullPath);
    string fileName = Path.GetFileNameWithoutExtension(fullPath);
    string extension = Path.GetExtension(fullPath);
    
    int count = 1;
    string newFileName = fileName + count + extension;
    string newFullPath = Path.Combine(directory, newFileName);

     

    I can post a bugfix release of @TechnoRobbo's plugin sometime this weekend.

    • Like 1
    • Thanks 1
    • Upvote 1
    • You're a Smart Cookie! 1
  6. 10 minutes ago, Colonel_Gerdauf said:

    Application                                               paint.net 5.0 (Stable 5.0.8410.34435)
    Build Date                                                Tuesday, 10 January, 2023
    Install type                                              Appx

     

    This is a pretty old version of Paint.NET.

    You should go into the Microsoft Store, and check for updates.

    If it doesn't update, perhaps you'll need to log into the Microsoft Store.

     

    10 minutes ago, Colonel_Gerdauf said:

    OS                                                        Windows 10 Pro x64 (10.0.19042.0)

     

    This is now an unsupported version of Windows 10. (unsupported by Microsoft)

    You really need to run Windows Update.

×
×
  • Create New...