Search found 3762 matches

by Little John
Tue Feb 06, 2024 7:37 pm
Forum: Bugs - Documentation
Topic: OpenHelp/CloseHelp on Linux
Replies: 4
Views: 298

Re: Open/Close Help

Erlend wrote: Tue Feb 06, 2024 7:07 pm At least the Linux version IDE/Compiler does not recognize the command, so it should state something else.
:?:
PureBasic neither has an "Open" nor a "Close" function.
by Little John
Tue Feb 06, 2024 7:37 pm
Forum: Bugs - Linux
Topic: OpenHelp/CloseHelp on Linux
Replies: 4
Views: 164

Re: Open/Close Help

Erlend wrote: Tue Feb 06, 2024 7:07 pm At least the Linux version IDE/Compiler does not recognize the command, so it should state something else.
:?:
PureBasic neither has an "Open" nor a "Close" function.
by Little John
Mon Feb 05, 2024 10:12 am
Forum: Bugs - IDE
Topic: [PB610b5] Is the IDE a sticky window?
Replies: 5
Views: 442

Re: [PB610b5] Is the IDE a sticky window?

Kiffi wrote: Mon Feb 05, 2024 9:54 am I cannot confirm this.
I can't confirm this either.
Kiffi wrote: Mon Feb 05, 2024 9:54 am I doubt that this is a bug.
The funny (or not so funny) thing is: You can say that about marcoagpinto's "bug reports" even without reading them ... and you'll be correct in approx. 99.9% of cases. :mrgreen:
by Little John
Sun Feb 04, 2024 9:18 pm
Forum: The PureBasic Editor
Topic: Tool - Can triggers be combined ?
Replies: 6
Views: 449

Re: Tool - Can triggers be combined ?

Hi,

perhaps you can set up 2 instances of that tool with differnt triggers? Not very elegant, but it might work. :-)
by Little John
Sun Feb 04, 2024 3:05 pm
Forum: Feature Requests and Wishlists
Topic: Iterators
Replies: 8
Views: 585

Re: Iterators

Of course, but it needs mangling around with the position manually just like my workaround macro stuff. What if I access said item before or after such an iteration and misplace it before/after push/pop? Why do I need to write 3 more lines if it could be integrated seamlessly in the language? Every...
by Little John
Sun Feb 04, 2024 3:01 pm
Forum: Bugs - Windows
Topic: [Done] [PB 6.10 beta 4] ConvertDate()
Replies: 9
Views: 1247

Re: [Done] [PB 6.10 beta 4] ConvertDate()

Works fine here now with PB 6.10 beta 5 on Windows. :-)

For clarity, it would be good to add something like the following to the documentation of ConvertDate():
For the local time, daylight saving time is taken into account.
by Little John
Sun Feb 04, 2024 1:48 pm
Forum: Feature Requests and Wishlists
Topic: Iterators
Replies: 8
Views: 585

Re: Iterators

DarkDragon wrote: Sun Feb 04, 2024 1:05 pm

Code: Select all

Classic ForEach cannot be nested
ForEach can be nested by using PushListPosition()/PopListPosition() or PushMapPosition()/PopMapPosition(), respectively.
by Little John
Fri Feb 02, 2024 2:54 pm
Forum: General Discussion
Topic: Unicode and PureBasic
Replies: 29
Views: 100204

Re: Unicode and PureBasic

idle wrote a UTF-16 module.
by Little John
Fri Feb 02, 2024 1:15 am
Forum: Bugs - Windows
Topic: [Done] [PB 6.10 beta 4] ConvertDate()
Replies: 9
Views: 1247

Re: [Done] [PB 6.10 beta 4] ConvertDate()

Thank you!
by Little John
Fri Feb 02, 2024 1:02 am
Forum: Bugs - Windows
Topic: [Done] [PB 6.10 beta 4] Date() and leap years
Replies: 9
Views: 674

Re: [PB 6.10 beta 4] Date() and leap years

AZJIO wrote: Thu Feb 01, 2024 11:32 pm If the formulas are different, then someone is wrong.
I'm glad that we talked about it. :mrgreen:
freak wrote: Thu Feb 01, 2024 11:57 pm I guess we will never find out why :mrgreen:

fixed.
:-) Thank you!
by Little John
Thu Feb 01, 2024 9:33 pm
Forum: Bugs - Windows
Topic: [Done] [PB 6.10 beta 4] Date() and leap years
Replies: 9
Views: 674

Re: [PB 6.10 beta 4] Date() and leap years

Fred wrote: Thu Feb 01, 2024 9:04 pm Now that's weird but OK :lol:
Yes, I was pretty much surprised. :-)
AZJIO wrote: Thu Feb 01, 2024 9:11 pm from AutoIt3

Code: Select all

[...]
Debug DateIsLeapYear(3600)
:lol:
We don't need AutoIt in order to know that 3600 is a leap year in the Gregorian calendar ...
by Little John
Thu Feb 01, 2024 5:59 pm
Forum: Bugs - Windows
Topic: [Done] PB 6.1 beta 4 - Right click on Systray causes crash, Left does not trigger event
Replies: 10
Views: 554

Re: PB 6.1 beta 4 - Right click on Systray causes crash, Left does not trigger event

The SysTrayIcon is not a gadget. So If EventGadget() = SysTrayIcon doesn't make sense here. The respective code part should look like this: Case #PB_Event_SysTray Select EventType() Case #PB_EventType_LeftDoubleClick ; If EventGadget() = SysTrayIcon ; do something ; EndIf Case #PB_EventType_LeftClic...
by Little John
Thu Feb 01, 2024 4:20 pm
Forum: Bugs - Windows
Topic: [Done] PB 6.1 beta 4 - Right click on Systray causes crash, Left does not trigger event
Replies: 10
Views: 554

Re: PB 6.1 beta 4 - Right click on Systray causes crash, Left does not trigger event

Please post short but complete executable code that allows us (especially Fred) to reproduce the issue!
by Little John
Mon Jan 29, 2024 11:39 pm
Forum: Bugs - Windows
Topic: [Done] [PB 6.10 beta 4] ConvertDate()
Replies: 9
Views: 1247

Re: [PB 6.10 beta 4] ConvertDate()

Here in Australia, the conversion is correct for daylight saving (which is in effect now) but wrong for dates which should be no daylight saving. It looks like the decision about daylight saving is based on whatever is in effect NOW, not the date in the code. Interesting. Thanks for the information!