PB Windows IDE not responding for a long time

Everything else that doesn't fall into one of the other PB categories.
User avatar
Demivec
Addict
Addict
Posts: 4269
Joined: Mon Jul 25, 2005 3:51 pm
Location: Utah, USA

Re: PB Windows IDE not responding for a long time

Post by Demivec »

RSrole wrote: Thu Nov 17, 2022 10:48 pm So for the moment, how can I remove the entry from the database? I don't know where it's stored.
It's stored in the IDE's preferences file.
Marc56us
Addict
Addict
Posts: 1600
Joined: Sat Feb 08, 2014 3:26 pm

Re: PB Windows IDE not responding for a long time

Post by Marc56us »

A habit to get into: Test the presence of the file before trying to open it, it is much faster.

Code: Select all

Debug FileSize("\\test\hello\world.txt")   ; -1 file does not exist
If you don't do this, a local network can take up to 20 minutes to respond if there is no local name resolution system (it looks crashed, but it isn't)
Look up NetBIOS over TCP/IP to understand how names propagation works (or not) on a local network in the absence of local DNS.
:wink:
User avatar
mk-soft
Always Here
Always Here
Posts: 6246
Joined: Fri May 12, 2006 6:51 pm
Location: Germany

Re: PB Windows IDE not responding for a long time

Post by mk-soft »

I have wrote a tool to remove netwerk files from purebasic preferences ;)

Link: Purebasic Preferences Cleaner
My Projects ThreadToGUI / OOP-BaseClass / EventDesigner V3
PB v3.30 / v5.75 - OS Mac Mini OSX 10.xx - VM Window Pro / Linux Ubuntu
Downloads on my Webspace / OneDrive
RSrole
User
User
Posts: 71
Joined: Fri Apr 29, 2022 8:27 pm

Re: PB Windows IDE not responding for a long time

Post by RSrole »

So it's purebasic.pref in C:\Users\{username}\AppData\Roaming\PureBasic
Post Reply