Search found 1223 matches

by Bisonte
Fri Aug 22, 2025 7:18 am
Forum: Tricks 'n' Tips
Topic: Simple toggle trick
Replies: 19
Views: 1397

Re: Simple toggle trick



If this is supposed to be a tip, and it is found by a beginner...
they will be confused at first.

What are these constants?

Please use PureBasic constants and not API constants
Thank you.


Wow!! Didn't think it would offend anyone. Have it your way...
...

Sorry its no offend... But your ...
by Bisonte
Fri Aug 22, 2025 6:49 am
Forum: Off Topic
Topic: The advertisings on this forum
Replies: 47
Views: 3234

Re: The advertisings on this forum


... I think uBlock is a younger brother to umatrix and far more lenient.


It's not a "younger brother" its a little bit different. see here : https://utcc.utoronto.ca/~cks/space/blog/web/UBlockOriginAndUMatrix

And by the way uMatrix is very old. Last Update 4 years ago... Maybe you should ...
by Bisonte
Thu Aug 21, 2025 7:35 am
Forum: Tricks 'n' Tips
Topic: Simple toggle trick
Replies: 19
Views: 1397

Re: Simple toggle trick

If this is supposed to be a tip, and it is found by a beginner...
they will be confused at first.

What are these constants?

Please use PureBasic constants and not API constants (which, to my knowledge, only exist in Windows),
even if they are quicker to write... Not everyone use your ...
by Bisonte
Sun Aug 10, 2025 10:26 pm
Forum: Tricks 'n' Tips
Topic: Windows Media Player Control
Replies: 47
Views: 17860

Re: Windows Media Player Control

yep. Thx ;)
by Bisonte
Sun Aug 10, 2025 5:39 pm
Forum: Tricks 'n' Tips
Topic: Windows Media Player Control
Replies: 47
Views: 17860

Re: Windows Media Player Control

Justin wrote: Tue Mar 25, 2025 5:09 pm ...
Download libvlc:
https://www.nuget.org/packages/VideoLAN ... ows/3.0.21
Rename it to .zip and unzip the contents.
...
sorry, but WHAT should I download there ? I am old, I need help ;)
by Bisonte
Fri Aug 08, 2025 5:00 pm
Forum: Game Programming
Topic: [GAME INTRO PLAYER] Alternative Movie Player
Replies: 16
Views: 857

Re: [GAME INTRO PLAYER] Alternative Movie Player

yes. intro, ticker, sys and petski... An downloaded today at 7 a.m. in germany.
by Bisonte
Fri Aug 08, 2025 3:31 pm
Forum: Game Programming
Topic: [GAME INTRO PLAYER] Alternative Movie Player
Replies: 16
Views: 857

Re: [GAME INTRO PLAYER] Alternative Movie Player


Hey miso, after test over 6.02 and 6.21, no work, i got black screeen but no sound and no image, only black screen.
In pb6.21 i can see the text but is still in 0:00 not playng. (but only in 3D mode)
In pb6.02 only black screen.
Tested in 64bit windows 11. Sorry friend.


On my w11 it works (pb6 ...
by Bisonte
Fri Aug 08, 2025 5:23 am
Forum: Tricks 'n' Tips
Topic: Uptime On Your App
Replies: 27
Views: 973

Re: Uptime On Your App

FormatDate() is not the right function....

Use this to calculate the ontime into hours/days...

Procedure.s FormatSeconds(lSeconds.q, Days = 0)
; from hroudtwolf
Protected lHours.q, lMinutes, lDays.q, String.s, First.s

lMinutes = lSeconds / 60
lSeconds = lSeconds % 60
lHours = lMinutes ...
by Bisonte
Thu Jul 24, 2025 5:07 pm
Forum: Off Topic
Topic: Is Google excluded from crawling this board?
Replies: 22
Views: 1896

Re: Is Google excluded from crawling this board?

confirmed. Nearly no post is found by google anymore.
by Bisonte
Mon Jul 21, 2025 7:57 am
Forum: Tricks 'n' Tips
Topic: Custom Menu [Windows]
Replies: 15
Views: 945

Re: Custom Menu [Windows]

looks good, but if the y value of the popupmenu is too far away from the gadget, there is no chance to use it ;)

You made it 45 but the gadget is only 30 in height... so the menu dissappears if you try to reach it ...
by Bisonte
Wed Jul 02, 2025 3:26 pm
Forum: Game Programming
Topic: Game test v0.01
Replies: 53
Views: 3269

Re: Game test v0.01

Veeeery nice ;)
by Bisonte
Tue Jun 10, 2025 6:59 am
Forum: Announcement
Topic: PureBasic 6.21 is out !
Replies: 169
Views: 35676

Re: PureBasic 6.21 is out !

Thanx to Fantasie Software ;)

And the same procedure, as the last final !
Museum need the last version, in this case 6.20 ;)

By the way : This is the first version for Windows ARM ?!
by Bisonte
Sun Apr 27, 2025 7:20 am
Forum: Off Topic
Topic: School is not the place for hackers
Replies: 18
Views: 4523

Re: School is not the place for hackers

School is broken everywhere... the governments spend not enough money for the kids... and it is totally equal where you look at it...

A teacher said to me in the eighties : You don't need to know everything, you just need to know where to look it up...

And so for the most people ... Google are ...
by Bisonte
Fri Apr 25, 2025 12:31 pm
Forum: Coding Questions
Topic: RunProgramm cmd.exe Example
Replies: 9
Views: 1410

Re: RunProgramm cmd.exe Example

it mostly depends on what you are planning to do...
In this case you posted i would use CopyFile instead of opening a console ;)

RunProgram("cmd.exe", Parameter$, WorkDir$) is the minimum... the example in the docs are ok with it.

ups....

RunProgram("cmd.exe", "copy C:\text.txt D:\text.txt ...
by Bisonte
Mon Apr 21, 2025 7:29 am
Forum: Coding Questions
Topic: Syntax for accessing an element of a (pointer) array ?
Replies: 6
Views: 935

Re: Syntax for accessing an element of a (pointer) array ?

Your *Buffer is not an Array.

*Buffer is simply a pointer to a memory adress. not more. Searching is like :

Code: Select all

Define *Buffer
*Buffer = AllocateMemory(100)

For i = 0 to 99
	If *Buffer + i = 13
		Debug "Hit"
		Break
	Endif
Next i