Magic gets better with practice
Search found 275 matches
- Tue Oct 22, 2024 12:35 am
- Forum: General Discussion
- Topic: http Headers without content?
- Replies: 5
- Views: 1376
- Tue Oct 22, 2024 12:34 am
- Forum: General Discussion
- Topic: http Headers without content?
- Replies: 5
- Views: 1376
Re: http Headers without content?
@idle: Thank you very much!! Not sure how I missed that but it is working as need.
- Mon Oct 21, 2024 1:35 am
- Forum: General Discussion
- Topic: http Headers without content?
- Replies: 5
- Views: 1376
http Headers without content?
How can I get the http headers without downloading the content?
Thanks
Thanks
- Tue Aug 13, 2024 8:34 pm
- Forum: Coding Questions
- Topic: Get gif duration?
- Replies: 2
- Views: 1098
Get gif duration?
Is there a simple way to get the duration of a gif?
like this gif is 4secs long?
like this gif is 4secs long?
- Tue Jul 25, 2023 1:25 am
- Forum: Linux
- Topic: Issue with sound lib?
- Replies: 5
- Views: 1432
Re: Issue with sound lib?
@Fred, Thank you that was it I thought it was SDL I needed but for some kept choosing SDL2 and thought that would do but.. But working now. Thanks alot.
- Mon Jul 24, 2023 1:36 am
- Forum: Linux
- Topic: Issue with sound lib?
- Replies: 5
- Views: 1432
Re: Issue with sound lib?
xine is installed...
- Sun Jul 23, 2023 7:13 pm
- Forum: Linux
- Topic: Issue with sound lib?
- Replies: 5
- Views: 1432
Issue with sound lib?
I am getting the below error with the sample sound.pb or any other with sound. Would anyone happen to know what lib or what I am missing:
/usr/bin/ld: Sound.a(Sound.o): in function `fill_audio':
Sound.c:(.text+0x67): undefined reference to `SDL_MixAudio'
/usr/bin/ld: Sound.c:(.text+0xe0 ...
/usr/bin/ld: Sound.a(Sound.o): in function `fill_audio':
Sound.c:(.text+0x67): undefined reference to `SDL_MixAudio'
/usr/bin/ld: Sound.c:(.text+0xe0 ...
- Mon Apr 10, 2023 12:15 am
- Forum: Coding Questions
- Topic: Simulate CTRL+A and CTRL+C
- Replies: 29
- Views: 3389
Re: Simulate CTRL+A and CTRL+C
This works for me:
Procedure ExtractRegExMatch (text$, Array result$(1), regex$ = "")
Static iRegEx
Protected iRetVal = -1 ; regex error
If regex$
If iRegEx > 0:FreeRegularExpression(iRegEx):EndIf
iRegEx = CreateRegularExpression(#PB_Any, regex$)
EndIf
If iRegEx
iRetVal ...
Procedure ExtractRegExMatch (text$, Array result$(1), regex$ = "")
Static iRegEx
Protected iRetVal = -1 ; regex error
If regex$
If iRegEx > 0:FreeRegularExpression(iRegEx):EndIf
iRegEx = CreateRegularExpression(#PB_Any, regex$)
EndIf
If iRegEx
iRetVal ...
- Tue Mar 28, 2023 9:28 pm
- Forum: Coding Questions
- Topic: Keeps becoming unresponsive kinda randomly?
- Replies: 3
- Views: 805
Keeps becoming unresponsive kinda randomly?
Any one can see what I am doing wrong here why it keeps freezing and or becoming unreponsive?
;systemctl is-active
Enumeration
#MainWindow
#StatusBar
#Timer30000
#gCBOServer
#gLSTServices
#gBTNRebootServer
#gBTNRestartServices
#gBTNQuit
EndEnumeration
Enumeration
#imgYellow
#imgRed ...
;systemctl is-active
Enumeration
#MainWindow
#StatusBar
#Timer30000
#gCBOServer
#gLSTServices
#gBTNRebootServer
#gBTNRestartServices
#gBTNQuit
EndEnumeration
Enumeration
#imgYellow
#imgRed ...
- Mon Dec 05, 2022 2:43 pm
- Forum: Coding Questions
- Topic: Seperate WebGadget Sessions?
- Replies: 0
- Views: 600
Seperate WebGadget Sessions?
Any idea how I can have multiple WebGadget windows with different sessions? so separate cookies etc..?
Thanks
Thanks
- Mon Sep 05, 2022 5:40 pm
- Forum: Coding Questions
- Topic: uneven gauge?
- Replies: 14
- Views: 2573
Re: uneven gauge?
@VB6_to_PBx: Like the dark mode 
@Michael Vogel: PERFECT!!! Thanks so much beautiful...
@Michael Vogel: PERFECT!!! Thanks so much beautiful...
- Sun Sep 04, 2022 11:13 pm
- Forum: Coding Questions
- Topic: uneven gauge?
- Replies: 14
- Views: 2573
Re: uneven gauge?
Still just a very simplified example, but maybe a good start...
BTW - if you change the value 40.1 to 40.01 you might see some flickering...
Very nice, it does more or less what I was hoping though doesnt seem to handle anything less then 1. But very cool.
Thanks so much for this example and ...
- Sun Sep 04, 2022 12:22 pm
- Forum: Coding Questions
- Topic: uneven gauge?
- Replies: 14
- Views: 2573
Re: uneven gauge?
Thanks, I have seen most of the gauges, but what I am looking for is not a gauge that goes like 10 - 20 - 30 - 40 - 50 - 60 - 70 -80 - 90 - 100, but that does like the gauge in the original post. .5 - 1 - 10 - 100 - 500 - 1000
So like the first quarter is .5% then next is 10 and next 100 etc.. I am ...
So like the first quarter is .5% then next is 10 and next 100 etc.. I am ...
- Sat Sep 03, 2022 9:47 pm
- Forum: Coding Questions
- Topic: uneven gauge?
- Replies: 14
- Views: 2573
uneven gauge?
Any one ever make a gauge like this? or know how to?

It is not even separations.
Screenshot from: https://openspeedtest.com

It is not even separations.
Screenshot from: https://openspeedtest.com
- Fri Jul 29, 2022 1:37 pm
- Forum: Coding Questions
- Topic: Threads and Procedures
- Replies: 18
- Views: 3040
Re: Threads and Procedures
I seen this example in the help already.
I am asking if procedures called from multiple threads overlap and how to prevent it allowing all the threads to run.
I am asking if procedures called from multiple threads overlap and how to prevent it allowing all the threads to run.