Search found 4314 matches

by freak
Sat Mar 16, 2024 2:29 pm
Forum: Coding Questions
Topic: AlignC not colored
Replies: 4
Views: 211

Re: AlignC not colored

There is no keyword called "AlignC". It is a constant called #PB_Structure_AlignC.
by freak
Thu Jan 25, 2024 11:00 pm
Forum: Coding Questions
Topic: IDE / Scintilla - active tab
Replies: 9
Views: 527

Re: IDE / Scintilla - active tab

You can also specify the "-l" (or "/L" on Windows) commandline option to specify a line to jump to in the loaded file.
by freak
Sun Jan 21, 2024 2:40 pm
Forum: Feature Requests and Wishlists
Topic: Default taskbar behavior for borderless windows
Replies: 6
Views: 652

Re: Default taskbar behavior for borderless windows

There are a lot of uses for borderless windows where a taskbar button is not desired. For example the AutoComplete window in the IDE.
by freak
Sun Jan 07, 2024 1:03 pm
Forum: Coding Questions
Topic: The function "WaitThread()" is freezing the calling program!
Replies: 11
Views: 741

Re: The function "WaitThread()" is freezing the calling program!

"AttachProcess()" is the ideal place to put the "WaitThread()", but unfortunately, when the Thread is completed, it doesn't allow executable to continue running, but only freezing it inside the Windows Task Manager. If you don't have the solution, then please dismiss this subjec...
by freak
Thu Dec 28, 2023 2:51 pm
Forum: Feature Requests and Wishlists
Topic: Update FormatDate() and ParseDate() to the new date range
Replies: 27
Views: 3065

Re: Update FormatDate() and ParseDate() to the new date range

Introduced a new "%yyyyy" format token to handle 5 digit years. If used on a 4 digit year it will force a leading 0 in FormatDate() to ensure proper parsing in ParseDate(). The "%yyyy" format token is restricted to 4 digits output even if the year has 5 digits. After thinking ab...
by freak
Wed Dec 27, 2023 12:54 am
Forum: Feature Requests and Wishlists
Topic: Update FormatDate() and ParseDate() to the new date range
Replies: 27
Views: 3065

Re: Update FormatDate() and ParseDate() to the new date range

Introduced a new "%yyyyy" format token to handle 5 digit years. If used on a 4 digit year it will force a leading 0 in FormatDate() to ensure proper parsing in ParseDate(). The "%yyyy" format token is restricted to 4 digits output even if the year has 5 digits. Update: https://ww...
by freak
Tue Dec 26, 2023 12:28 am
Forum: Feature Requests and Wishlists
Topic: Update FormatDate() and ParseDate() to the new date range
Replies: 27
Views: 3065

Re: Update FormatDate() and ParseDate() to the new date range

Updated: Date library for full 64bit support (new range is year 1601 to 30827) ... I hadn't the time to test PB 6.10 yet, but what I don't understand is the purpose of the new date range.... I would have expected that a greater supported range of around 29,000 years will go from history (let's say ...
by freak
Mon Dec 25, 2023 4:06 pm
Forum: Feature Requests and Wishlists
Topic: Update FormatDate() and ParseDate() to the new date range
Replies: 27
Views: 3065

Re: [BUG]Re: Update FormatDate() and ParseDate() to the new date range

; The last second of the year 1969 does not exist for FormatDate. That is on purpose. The value -1 has always meant "invalid date" in the PB date library so we have to keep that for backward compatibility. Changing that would break a lot of code so having this one specific second be non-r...
by freak
Sat Dec 23, 2023 2:45 pm
Forum: Coding Questions
Topic: Deriving key and vector for AES-256
Replies: 10
Views: 833

Re: Deriving key and vector for AES-256

The DeriveCypherKey() function in the new 6.10 beta release is designed for this. An example can be found here: https://www.purebasic.fr/english/viewto ... 71#p613171
by freak
Sat Dec 23, 2023 2:38 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 325
Views: 40457

Re: PureBasic 6.10 beta 1 - Xmas Release - is out !

Some examples: CustomSortList() Structure CustomStruct Value$ EndStructure ; Procedure must take two pointer values as parameter and return: ; #PB_Sort_Lesser if first < second ; #PB_Sort_Greater first > second ; #PB_Sort_Equal if first = second ; ; The functions are intended to sort structured list...
by freak
Wed Dec 13, 2023 10:20 pm
Forum: Bugs - IDE
Topic: [Done] Debugger bug (breakpoint ignored)
Replies: 3
Views: 706

Re: Debugger bug (breakpoint ignored)

fixed.
by freak
Tue Dec 05, 2023 4:30 pm
Forum: Announcement
Topic: PureBasic 6.04 LTS is out !
Replies: 78
Views: 11908

Re: PureBasic 6.04 beta 1 is out !

Are there so many differences to not make a dedicated XP-Version of PureBasic? I mean, only x86 should be relevant and the demand seems to be here. There are lots of compatibility hacks specific to XP in our libraries that we wanted to get rid of. Also, we cannot use any newer APIs without having a...