Search found 388 matches

by ozzie
Sun Dec 31, 2023 11:51 pm
Forum: Feature Requests and Wishlists
Topic: Option to reset source file tab order in the IDE
Replies: 5
Views: 729

Re: Option to reset source file tab order in the IDE

I would like an Editor Preference to set the tab order to alphabetical. I have about 170 .pbi files in my project, and as I write this I have 46 of those files open and displayed across two tab lines. If I'm looking for a particular file which I don't even know that I have currently open, it would b...
by ozzie
Sat Dec 23, 2023 5:14 am
Forum: Announcement
Topic: BASS audio library v2.4.11 and PureBasic 5.31 includes
Replies: 12
Views: 8426

Re: BASS audio library v2.4.11 and PureBasic 5.31 includes

Quin, I can email you what I use, so I've sent you a PM.
by ozzie
Mon Dec 11, 2023 10:22 am
Forum: Tricks 'n' Tips
Topic: MultiLines Header ListIcon
Replies: 7
Views: 898

Re: MultiLines Header ListIcon

Thanks, Axolotl, for the info about SetWindowLong being superseded.
by ozzie
Sun Nov 19, 2023 6:46 am
Forum: Coding Questions
Topic: PB and Freeimage cannot load certain images
Replies: 11
Views: 610

Re: PB and Freeimage cannot load certain images

I also have one png file that LoadImage fails to load. This png file was sent to me by a user. I've now successfully been able to display that png file using the code supplied above by RASHAD - many thanks!
by ozzie
Wed Nov 15, 2023 3:40 am
Forum: Tricks 'n' Tips
Topic: [Windows] Get modern system icons
Replies: 6
Views: 635

Re: [Windows] Get modern system icons

Thanks. I've been looking for various ways to improve the UI and this will help.
by ozzie
Sat Aug 12, 2023 9:09 am
Forum: Applications - Feedback and Discussion
Topic: BugTracker New Version 1.1 RTF
Replies: 14
Views: 1622

Re: BugTracker Release 1 Updated Release

Zipped version downloaded and installed OK, thanks.
by ozzie
Thu Aug 10, 2023 6:27 am
Forum: Applications - Feedback and Discussion
Topic: BugTracker New Version 1.1 RTF
Replies: 14
Views: 1622

Re: BugTracker Release 1

I'm interested but Windows 11 wouldn't let me download the setup program, reporting 'virus detected'.
by ozzie
Tue May 23, 2023 3:14 am
Forum: Coding Questions
Topic: EditiorGadget stopped to understand RTF format in 6.02
Replies: 3
Views: 417

Re: EditiorGadget stopped to understand RTF format in 6.02

Thanks. That tripped me up as well. Working OK now with the extra SendMessage_ call.
by ozzie
Mon May 08, 2023 2:27 am
Forum: Off Topic
Topic: Advertising space
Replies: 17
Views: 1641

Re: Advertising space

Thanks, Fred. Gone now.
by ozzie
Sun May 07, 2023 12:38 am
Forum: Off Topic
Topic: Advertising space
Replies: 17
Views: 1641

Re: Advertising space

Rolling ads still here. Annoying! :(
by ozzie
Sat May 06, 2023 3:22 am
Forum: Feature Requests and Wishlists
Topic: Option to reset source file tab order in the IDE
Replies: 5
Views: 729

Re: Option to reset source file tab order in the IDE

Thanks. Remembering the tab order for a few sessions is definitely useful, but after completing related changes to several source files it will be helpful just to reset the tab order.
by ozzie
Thu May 04, 2023 6:23 am
Forum: Feature Requests and Wishlists
Topic: Option to reset source file tab order in the IDE
Replies: 5
Views: 729

Option to reset source file tab order in the IDE

Using PB 6.01, PB 'remembers' the tab order of source files between IDE sessions. However, that can be a problem when trying to find the tab for a particular source file. Currently I have 3 lines of tabs covering over 40 source files in my project (and there are more than 150 source files in the pro...
by ozzie
Sun Oct 23, 2022 9:25 am
Forum: Coding Questions
Topic: [Bug][PB6.00 LTS x64] ElapsedMilliseconds always returns 0
Replies: 5
Views: 440

Re: [Bug][PB6.00 LTS x64] ElapsedMilliseconds always returns 0

See my work-around in this forum posting.
by ozzie
Tue Oct 04, 2022 6:47 am
Forum: Feature Requests and Wishlists
Topic: Special formatting in IDE?
Replies: 2
Views: 383

Re: Special formatting in IDE?

The 'Issues' item under 'preferences' may help. You can add your own entries. I have added Note (\bNOTE\b.*) and Info (\bINFO\b.*). For Note I have the background color set to yellow, and for Info the background color is set to white. Any comment line that starts with ; NOTE will display with a yell...
by ozzie
Mon Sep 26, 2022 7:52 am
Forum: Coding Questions
Topic: [PB 6.00] #PB_EventType_Focus doesn't seem to be working
Replies: 7
Views: 484

Re: [PB 6.00] #PB_EventType_Focus doesn't seem to be working

BarryG wrote: Sun Sep 25, 2022 10:58 am That's why I use GetActiveGadget() after a #PB_Event_Gadget trigger, so I can keep track of which gadget now has (or lost) the focus.
Thanks, BarryG. That's a useful tip.