Search found 144 matches

by dibor
Mon Jul 14, 2025 4:49 pm
Forum: Announcement
Topic: PBWebcam - cross-platform camera access!
Replies: 15
Views: 3674

Re: PBWebcam - cross-platform camera access!

I can not to run PBWebcam example under MacOS :(
Lib., do not find :(
Have put all folders to the right place, as shown in the install.md file and set right path in the source.
Looks like I did something wrong :(
by dibor
Mon Jul 14, 2025 3:35 am
Forum: Announcement
Topic: PBWebcam - cross-platform camera access!
Replies: 15
Views: 3674

Re: PBWebcam - cross-platform camera access!

Thank U JHPJHP
I will try.
Can U do VfW window resizable?
by dibor
Wed Jul 09, 2025 10:55 pm
Forum: Announcement
Topic: PBWebcam - cross-platform camera access!
Replies: 15
Views: 3674

Re: PBWebcam - cross-platform camera access!

Here works with PC web camera GOOD.
Thank U!

Possible to use with other cameras?
A have analog camera connected through USB capture device.
Camera is recognised by your VfW Camera program, but this program sometimes caused BSOD


Best Wishes.
by dibor
Fri Jul 04, 2025 11:49 pm
Forum: Mac OSX
Topic: Scintilla scrolling with trackpad
Replies: 1
Views: 83

Scintilla scrolling with trackpad

Hello.
I do not know, this is a bug or not.
Issue:
Scintilla gadget with disabled vertical and horizontal scrollbars.
With simple mouse, by scroll wheel, I can scroll up and down in the gadget, with trackpad don't :(

Anybody saw something it looks like?

Thank U
by dibor
Sat Jun 28, 2025 9:15 pm
Forum: Coding Questions
Topic: Strange issue with IF and Peek
Replies: 12
Views: 488

Re: Strange issue with IF and Peek

NicTheQuick wrote: Sat Jun 28, 2025 6:33 pm Why do you wait for more than 4 bytes if you only need 4?

Code: Select all

If Size > 4
Do you always send more than 4?
And why do yo ignore the data if less was received? You should buffer it until it reaches 4 bytes.
Because 4 first bytes are preamble of the right message.
by dibor
Sat Jun 28, 2025 9:12 pm
Forum: Coding Questions
Topic: Strange issue with IF and Peek
Replies: 12
Views: 488

Re: Strange issue with IF and Peek

HeX0R wrote: Sat Jun 28, 2025 2:48 pm no one saw the main error in the initial code?

Code: Select all

If (PeekA(*Buffer) = $AD And PeekA(*Buffer + 1) = $BC And PeekA(*Buffer + 2) = $CB And PeekA(*Buffer + 3) = $DA)
  Debug "Got right packet"
EndIf
Are U RIGHT!!
PeekA work!
by dibor
Fri Jun 27, 2025 9:25 pm
Forum: Coding Questions
Topic: Strange issue with IF and Peek
Replies: 12
Views: 488

Re: Strange issue with IF and Peek

I do not big programmer but doesn't saw this restriction in the comparisons in any other languages :(

Compiler do not gave any warnings or errors - simple doesn't work.
by dibor
Fri Jun 27, 2025 9:06 pm
Forum: Coding Questions
Topic: Strange issue with IF and Peek
Replies: 12
Views: 488

Re: Strange issue with IF and Peek

In other words I can NOT to use long and quad in the comparisons?
by dibor
Fri Jun 27, 2025 7:30 pm
Forum: Coding Questions
Topic: Strange issue with IF and Peek
Replies: 12
Views: 488

Strange issue with IF and Peek

Hello gung.

I broke my head with this problem and I can't understand where I did wrong.


*Buffer = AllocateMemory(2048)

If CreateNetworkServer(0, 2237, #PB_Network_UDP)
Debug "Server started on port 2237"
Repeat
Event = NetworkServerEvent()
If Event
ClientID = EventClient()
If Event = #PB ...
by dibor
Wed Jun 25, 2025 3:05 pm
Forum: Tricks 'n' Tips
Topic: PureTelegram (framework for using the Telegram API)
Replies: 101
Views: 31648

Re: PureTelegram (framework for using the Telegram API)

I am stupid idiot, was use [] .
As was in the example:

Code: Select all

#BotAPIToken = "[your bot's API token]"
#ChatID = "[your chat's ID or username]"
:oops:
by dibor
Wed Jun 25, 2025 3:00 pm
Forum: Tricks 'n' Tips
Topic: PureTelegram (framework for using the Telegram API)
Replies: 101
Views: 31648

Re: PureTelegram (framework for using the Telegram API)

Hi.
My example looks same:

Code: Select all

XIncludeFile "PureTelegram.pbi"
#BotAPIToken = "[7620816597:AAHhBvBM9qqlZ1arXJKmhFGTR_EfFcwaPGk]"
#ChatID = "[1701234043]"

txt.s = "Test"
mid.i = Telegram_PostText(#BotAPIToken,#ChatID,txt)
by dibor
Wed Jun 25, 2025 1:01 pm
Forum: Tricks 'n' Tips
Topic: PureTelegram (framework for using the Telegram API)
Replies: 101
Views: 31648

Re: PureTelegram (framework for using the Telegram API)

Nothing work :(
Looks like I am too stupid :(
by dibor
Wed Jun 25, 2025 11:50 am
Forum: Tricks 'n' Tips
Topic: PureTelegram (framework for using the Telegram API)
Replies: 101
Views: 31648

Re: PureTelegram (framework for using the Telegram API)

Caronte3D wrote: Wed Jun 25, 2025 11:18 am BTW... Have you created and added the Telegram bot to the group?
Yes
by dibor
Wed Jun 25, 2025 11:19 am
Forum: Tricks 'n' Tips
Topic: PureTelegram (framework for using the Telegram API)
Replies: 101
Views: 31648

Re: PureTelegram (framework for using the Telegram API)

I did it privet, will do public and will check.

Thank U
by dibor
Wed Jun 25, 2025 11:12 am
Forum: Tricks 'n' Tips
Topic: PureTelegram (framework for using the Telegram API)
Replies: 101
Views: 31648

Re: PureTelegram (framework for using the Telegram API)

Hi
I did exact as in the module help.
ChatID with @username or chat number
Have tried with and w/o "-" , doesn't work :(

:(