PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: Andy Flowers on March 24, 2016, 03:05:29 PM

Title: FF 3.74 for PB and Windows 10 problem
Post by: Andy Flowers on March 24, 2016, 03:05:29 PM
I am not sure if this problem was identified before.

I am using FF with Windows 10 64 bit and there are times I attempt to Load/Start FF and it does not load on the first attempt. After double clicking it tow or three times it loads. Has anyone else encountered this problem ?

Andy
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Jean-pierre Leroy on March 24, 2016, 04:09:15 PM
Hi Andy,

I encountered the same problem as you.

But I would like to say that this problem doesn't happen only with FireFfly 3.74. I have the same issue with many other software.

I think it's a Windows 10 issue.

Regards,
Jean-Pierre
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Andy Flowers on March 24, 2016, 04:17:38 PM
Thanks Jean-pierre.

Will just have to wait to see if it goes away as Windows update gets installed.

Andy
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Klaas Holland on March 25, 2016, 08:26:05 AM
Hi all,

I have this problem too on Windows XP and on Windows 7.

Regards,
Klaas
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Paul Squires on March 25, 2016, 09:01:56 AM
I encounter this problem also... and I wrote the damn program  :)

Not sure why it happens. I never researched the problem because I thought that it was probably just my development setup but obviously now it is something that many of you are experiencing.
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: David Kenny on March 25, 2016, 12:35:05 PM
No problems on Win7 32bit here.
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Petrus Vorster on March 25, 2016, 01:56:47 PM
I get it too, but its not limited to Firefly only.
I found it on other tools like Inkscape, Gimpshop and a game or two.
It appears to be a Windows issue.
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Brian Alvarez on March 29, 2016, 02:24:19 AM
 I noticed this problem only after i manually copied the 3.74 update to the 3.70 installation. I think Win10 has a problem with user manually "fiddling" with the installed files.
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Patrice Terrier on March 31, 2016, 06:16:55 AM
I had also this problem with PowerBASIC, one of my application was starting only once out of height.

This is related to a random memory error that occures in the latest version 10.04.

This was already reported in the beta 2012, and in the current one.
QuoteComparing 10.03 to 10.04 might be more productive. 10.04 was not stable for a large well functioning s/w system here. It was next to impossible to get an error readout, because just changing a few lines of code around would cause the error to happen elsewhere. The primary symptom was the application shut down and slam bam back to the desktop. This is similar to the problems others have reported in this beta.

I have even writen a small demo for the beta, that is able to reproduce it every time.

In my case the problem occured with a conjunction of REDIM/ARRAY SCAN (and a global dynamic array)

FUNCTION skMenuSkinItemOk (BYVAL nID AS LONG) AS LONG '// 03-21-2016
    LOCAL K, nItem AS LONG
    'IF UBOUND(mSkin) > 0 THEN ARRAY SCAN mSkin(), = nID, TO nItem
    for K = lbound(mSkin()) to ubound(mSkin())
        if mSkin(K) = nID then nItem = K: exit for
    next
    FUNCTION = nItem
END FUNCTION


Replacing the line in red with the line in blue solved the problem i had in WinLIFT when compiling with 10.04.

I have attached a zip file, with the short demo i wrote for the beta.

So far (for PB users) the only reliable solution is to switch back to a previous compiler version, and to the first FireFly 3.0 version (the one without the CWindow class).

...



Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Paul Squires on March 31, 2016, 04:39:17 PM
That's awesome Patrice, thanks for sharing this knowledge.

Paul
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Barry Gordon on April 01, 2016, 01:46:28 PM
Hi Chaps,

I too had this problem when I created a new directory for the FF latest version - and then created a new shortcut to point at it  (on Win 10)

It may entirely be my imagination - but I feel that since I slowed down my clicking speed (i.e. more deliberate) it seems to work reliably.

Weird!

Barry
Title: Re: FF 3.74 for PB and Windows 10 problem
Post by: Brian Alvarez on April 04, 2016, 05:29:39 AM
 After i copied the 3.74 files into the 3.70 installation, the
message box doesnt paste the Messagebox code in the
editor, is there a fix for this?