Search found 275 matches

by vwidmer
Tue Oct 22, 2024 12:35 am
Forum: General Discussion
Topic: http Headers without content?
Replies: 5
Views: 1273

Re: http Headers without content?

Piero wrote: Mon Oct 21, 2024 2:50 pm
vwidmer wrote: Mon Oct 21, 2024 1:35 am I just put stuff here and there and sometimes like magic it works.
You're talking about headers but I liked the signature :lol:
Magic gets better with practice :lol:
by vwidmer
Tue Oct 22, 2024 12:34 am
Forum: General Discussion
Topic: http Headers without content?
Replies: 5
Views: 1273

Re: http Headers without content?

@idle: Thank you very much!! Not sure how I missed that but it is working as need.
by vwidmer
Mon Oct 21, 2024 1:35 am
Forum: General Discussion
Topic: http Headers without content?
Replies: 5
Views: 1273

http Headers without content?

How can I get the http headers without downloading the content?

Thanks
by vwidmer
Tue Aug 13, 2024 8:34 pm
Forum: Coding Questions
Topic: Get gif duration?
Replies: 2
Views: 1047

Get gif duration?

Is there a simple way to get the duration of a gif?

like this gif is 4secs long?
by vwidmer
Tue Jul 25, 2023 1:25 am
Forum: Linux
Topic: Issue with sound lib?
Replies: 5
Views: 1346

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.
by vwidmer
Mon Jul 24, 2023 1:36 am
Forum: Linux
Topic: Issue with sound lib?
Replies: 5
Views: 1346

Re: Issue with sound lib?

xine is installed...
by vwidmer
Sun Jul 23, 2023 7:13 pm
Forum: Linux
Topic: Issue with sound lib?
Replies: 5
Views: 1346

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 ...
by vwidmer
Mon Apr 10, 2023 12:15 am
Forum: Coding Questions
Topic: Simulate CTRL+A and CTRL+C
Replies: 29
Views: 3168

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 ...
by vwidmer
Tue Mar 28, 2023 9:28 pm
Forum: Coding Questions
Topic: Keeps becoming unresponsive kinda randomly?
Replies: 3
Views: 742

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 ...
by vwidmer
Mon Dec 05, 2022 2:43 pm
Forum: Coding Questions
Topic: Seperate WebGadget Sessions?
Replies: 0
Views: 574

Seperate WebGadget Sessions?

Any idea how I can have multiple WebGadget windows with different sessions? so separate cookies etc..?

Thanks
by vwidmer
Mon Sep 05, 2022 5:40 pm
Forum: Coding Questions
Topic: uneven gauge?
Replies: 14
Views: 2370

Re: uneven gauge?

@VB6_to_PBx: Like the dark mode :)

@Michael Vogel: PERFECT!!! Thanks so much beautiful...
by vwidmer
Sun Sep 04, 2022 11:13 pm
Forum: Coding Questions
Topic: uneven gauge?
Replies: 14
Views: 2370

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 ...
by vwidmer
Sun Sep 04, 2022 12:22 pm
Forum: Coding Questions
Topic: uneven gauge?
Replies: 14
Views: 2370

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 ...
by vwidmer
Sat Sep 03, 2022 9:47 pm
Forum: Coding Questions
Topic: uneven gauge?
Replies: 14
Views: 2370

uneven gauge?

Any one ever make a gauge like this? or know how to?

Image

It is not even separations.

Screenshot from: https://openspeedtest.com
by vwidmer
Fri Jul 29, 2022 1:37 pm
Forum: Coding Questions
Topic: Threads and Procedures
Replies: 18
Views: 2783

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.