Android Question Weird problem with IDEs

JackKirk

Well-Known Member
Licensed User
Longtime User
My Windows 10 desktop did an automatic update overnight and I'm now on Version 21H1 (OS Build 19043.1288) according to winver.

All of a sudden when I select anything inside a B4X IDE I get this behaviour:

IDEweirdo.png


seems to only affect the B4X IDEs I use (A, i, J) - all selects in other editors (Note, VB6 ...) appear to be fine.

I've tried the obvious such as rebooting but it persists.

Googling didn't help either.

Also causing some weird behavior in Find/Replace.
 
Last edited:

JackKirk

Well-Known Member
Licensed User
Longtime User
I don't appear to have that installed - any suggestions where to look - it is not in Apps & Features.
 
Upvote 0

JackKirk

Well-Known Member
Licensed User
Longtime User
I just tried to install it but got this message:

.NET Framework 4.8 or a later update is already installed on this computer.

so I must have it installed - but can't find it.
 
Upvote 0

JackKirk

Well-Known Member
Licensed User
Longtime User
And a Google on "where is .net framework on my Windows 10 PC" tells me it is in Apps and Features - which I had already assumed - and I look again it is still not there.
 
Upvote 0

JackKirk

Well-Known Member
Licensed User
Longtime User
Found it - in my case it was:

Apps & Features > Programs and Features > Optional Features > More Windows features => which gives me your screen.

Sheesh - but this appears to only give the ability to turn it on or off - not repair it.
 
Upvote 0

JackKirk

Well-Known Member
Licensed User
Longtime User
And a Google on "how to repair .net framework on my Windows 10 PC" only throws up 3rd party "repair tools".
 
Upvote 0

JackKirk

Well-Known Member
Licensed User
Longtime User
Last edited:
Upvote 0

thetahsk

Active Member
Licensed User
Longtime User


You can try the System File Checker Tool sfc and the dism tool from microsoft.
Close all programs and open your cmd console as an Admin, and start with

sfc /scannow


After that go further with the Deployment Image Servicing and Management Tool.

Run dism in this order

dism /Online /Cleanup-Image /ScanHealth

dism /Online /Cleanup-Image /CheckHealth


If there are errors use this command for correction

dism /Online /Cleanup-Image /RestoreHealth
 
Upvote 0

JackKirk

Well-Known Member
Licensed User
Longtime User
You can try the System File Checker Tool sfc and the dism tool from microsoft.
Close all programs and open your cmd console as an Admin, and start with

sfc /scannow


After that go further with the Deployment Image Servicing and Management Tool.

Run dism in this order

dism /Online /Cleanup-Image /ScanHealth

dism /Online /Cleanup-Image /CheckHealth


If there are errors use this command for correction

dism /Online /Cleanup-Image /RestoreHealth
Did all this with this result:
Microsoft Windows [Version 10.0.19043.1288]
(c) Microsoft Corporation. All rights reserved.

C:\WINDOWS\system32>sfc /scannow

Beginning system scan. This process will take some time.

Beginning verification phase of system scan.
Verification 100% complete.

Windows Resource Protection found corrupt files and successfully repaired them.
For online repairs, details are included in the CBS log file located at
windir\Logs\CBS\CBS.log. For example C:\Windows\Logs\CBS\CBS.log. For offline
repairs, details are included in the log file provided by the /OFFLOGFILE flag.

C:\WINDOWS\system32>dism /Online /Cleanup-Image /ScanHealth

Deployment Image Servicing and Management tool
Version: 10.0.19041.844

Image Version: 10.0.19043.1288

[==========================100.0%==========================] No component store corruption detected.
The operation completed successfully.

C:\WINDOWS\system32>dism /Online /Cleanup-Image /CheckHealth

Deployment Image Servicing and Management tool
Version: 10.0.19041.844

Image Version: 10.0.19043.1288

No component store corruption detected.
The operation completed successfully.

C:\WINDOWS\system32>
With no change in the problem.
 
Upvote 0

JackKirk

Well-Known Member
Licensed User
Longtime User
Erel uses components from ActiproSoftware to build the IDEs, I'm suspecting there is something in there that the Windows update has broken.
 
Upvote 0

JackKirk

Well-Known Member
Licensed User
Longtime User
Nope I am using 100%
 
Upvote 0
Top