[PB6.03B8] CTRL+F and other issues

Post bugs related to the IDE here
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

[PB6.03B8] CTRL+F and other issues

Post by Psychophanta »

I have noticed the search function does not work, and CTRL+Z, CTRL+Y des not work as it should.
Besides of it, there are other new rare behaviours with the IDE in these latests betas.
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
Fred
Administrator
Administrator
Posts: 18344
Joined: Fri May 17, 2002 4:39 pm
Location: France
Contact:

Re: [PB6.03B8] CTRL+F and other issues

Post by Fred »

I just tried and it works here, can anybody confirm ?
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Re: [PB6.03B8] CTRL+F and other issues

Post by Psychophanta »

Here it is with x64 version in windows 8.1
Important to say that when i uninstall previous PB version, i delete 'PureBasic.prefs' and all other stuff. And i put an old 'PureBasic.prefs' i have stored for myself. I don't know if prefs can have something to say in these issues.
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
boddhi
Enthusiast
Enthusiast
Posts: 524
Joined: Mon Nov 15, 2010 9:53 pm

Re: [PB6.03B8] CTRL+F and other issues

Post by boddhi »

Fred wrote: Fri Sep 15, 2023 10:12 am I just tried and it works here, can anybody confirm ?
I had already reported having encountered the Ctrl+Z/Ctrl+Y issue under PB 6.03b6 and I confirm it again under beta 8.
If my English syntax and lexicon are incorrect, please bear with Google translate and DeepL. They rarely agree with each other!
Except on this sentence...
BarryG
Addict
Addict
Posts: 4218
Joined: Thu Apr 18, 2019 8:17 am

Re: [PB6.03B8] CTRL+F and other issues

Post by BarryG »

I've got no problem with Ctrl+Z and Ctrl+Y with Beta 8 and the custom IDE that Fred built. Works here.

How about some specific steps that we can follow to test, Psychophanta?
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Re: [PB6.03B8] CTRL+F and other issues

Post by Psychophanta »

@BarryG
Looks like is my 'prefs' file, which i replace manually onto the "user... ... roaming" folder.
Please let me chance to check myself firstly.

... I see nothing rare. Please check it:
https://mega.nz/file/9oIEzYAB#oZeYA6jry ... fVR6L8ksvs
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
User avatar
Psychophanta
Always Here
Always Here
Posts: 5153
Joined: Wed Jun 11, 2003 9:33 pm
Location: Anare
Contact:

Re: [PB6.03B8] CTRL+F and other issues

Post by Psychophanta »

Well, I have finally found the issue.
It is in the [FindWindow] section at the 'PureBasic.prefs' file.
I recently used a 8k monitor to program some 3D. Days after it, i returned to my 1920x1200 usual monitor.
Then , what has happened is the X position of the find window form was big (even not out of the boundaries of 1920x1200 :!: ).
The case is the find form in the editor was not visible at all.
This is how i had it:

Code: Select all

[FindWindow]
X = 1557
Y = 530
HistorySize = 10
DoReplace = 0
CaseSensitive = 0
WholeWord = 0
SelectionOnly = 0
AutoWrap = 0
NoComments = 0
NoStrings = 0
; 
Now, after replace "X = 1557" by "X = 150", the find functionallity in the editor returned to normal.

in conclusion:
1) I dont know why the editor does not display the find window when X = 1557 when using a 1920x1200, because 1557<1920
2) Please ensure that all windows (forms) which pop onto the editor are visible and inside desktop display resolution boundaries.
http://www.zeitgeistmovie.com

while (world==business) world+=mafia;
Post Reply