Hi
I was so glad we got the code-signing working that I sent the update out last night.
This morning I had an email saying there is still a problem with this image...

Name:  Screenshot 2025-01-15 111121-Error messages from mls246 startup.png
Views: 317
Size:  45.8 KB

This occurs when they start our program - not the installer. We check for updates at the start with this code-

Code:
    
    run('WUPDATE_SSL.EXE /C',1)
    if runcode() = 1 then
        if message('|Do you want to update now?||This will close the program and start the update', |
                    'Update available!',icon:clarion,Button:Yes+Button:No,Button:No)=Button:yes then
            run('WUPDATE_SSL.EXE',0)
            if NOT Quiet then
                CleanCloseDown()
            else
                HALT
            end
        end
    elsif NOT Quiet
        message('Currently running the most recent version.')
    end
Would this cause those messages?
I downloaded the install from my website and installed on 2 different computers here Win 10 and Win 11. I don't get any errors.

Any suggestions will be appreciated.