Latest beta is woks
Search found 145 matches
- Fri Sep 26, 2025 9:35 pm
- Forum: Bugs - IDE
- Topic: [Done] IDE is not responding while closing application
- Replies: 3
- Views: 626
Re: IDE is not responding while closing application
Tnx Fred.
Latest beta is woks
Latest beta is woks
- Fri Sep 26, 2025 5:02 pm
- Forum: Bugs - IDE
- Topic: [Done] IDE is not responding while closing application
- Replies: 3
- Views: 626
[Done] IDE is not responding while closing application
Hello.
After upgrading to new MacOS 26(and 26.1beta), I can not to close application
IDE do not closed and going to be not responsible, I should to do "Force quit".
Anybody has same issue?
Thank U
After upgrading to new MacOS 26(and 26.1beta), I can not to close application
IDE do not closed and going to be not responsible, I should to do "Force quit".
Anybody has same issue?
Thank U
- Mon Jul 14, 2025 4:49 pm
- Forum: Announcement
- Topic: PBWebcam - cross-platform camera access!
- Replies: 15
- Views: 5541
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
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
- Mon Jul 14, 2025 3:35 am
- Forum: Announcement
- Topic: PBWebcam - cross-platform camera access!
- Replies: 15
- Views: 5541
Re: PBWebcam - cross-platform camera access!
Thank U JHPJHP
I will try.
Can U do VfW window resizable?
I will try.
Can U do VfW window resizable?
- Wed Jul 09, 2025 10:55 pm
- Forum: Announcement
- Topic: PBWebcam - cross-platform camera access!
- Replies: 15
- Views: 5541
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.
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.
- Fri Jul 04, 2025 11:49 pm
- Forum: Mac OSX
- Topic: Scintilla scrolling with trackpad
- Replies: 1
- Views: 826
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
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
- Sat Jun 28, 2025 9:15 pm
- Forum: Coding Questions
- Topic: Strange issue with IF and Peek
- Replies: 12
- Views: 741
Re: Strange issue with IF and Peek
Because 4 first bytes are preamble of the right message.NicTheQuick wrote: Sat Jun 28, 2025 6:33 pm Why do you wait for more than 4 bytes if you only need 4?Do you always send more than 4?Code: Select all
If Size > 4
And why do yo ignore the data if less was received? You should buffer it until it reaches 4 bytes.
- Sat Jun 28, 2025 9:12 pm
- Forum: Coding Questions
- Topic: Strange issue with IF and Peek
- Replies: 12
- Views: 741
Re: Strange issue with IF and Peek
Are U RIGHT!!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
PeekA work!
- Fri Jun 27, 2025 9:25 pm
- Forum: Coding Questions
- Topic: Strange issue with IF and Peek
- Replies: 12
- Views: 741
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.
Compiler do not gave any warnings or errors - simple doesn't work.
- Fri Jun 27, 2025 9:06 pm
- Forum: Coding Questions
- Topic: Strange issue with IF and Peek
- Replies: 12
- Views: 741
Re: Strange issue with IF and Peek
In other words I can NOT to use long and quad in the comparisons?
- Fri Jun 27, 2025 7:30 pm
- Forum: Coding Questions
- Topic: Strange issue with IF and Peek
- Replies: 12
- Views: 741
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 ...
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 ...
- Wed Jun 25, 2025 3:05 pm
- Forum: Tricks 'n' Tips
- Topic: PureTelegram (framework for using the Telegram API)
- Replies: 102
- Views: 34021
Re: PureTelegram (framework for using the Telegram API)
I am stupid idiot, was use [] .
As was in the example:

As was in the example:
Code: Select all
#BotAPIToken = "[your bot's API token]"
#ChatID = "[your chat's ID or username]"
- Wed Jun 25, 2025 3:00 pm
- Forum: Tricks 'n' Tips
- Topic: PureTelegram (framework for using the Telegram API)
- Replies: 102
- Views: 34021
Re: PureTelegram (framework for using the Telegram API)
Hi.
My example looks same:
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)- Wed Jun 25, 2025 1:01 pm
- Forum: Tricks 'n' Tips
- Topic: PureTelegram (framework for using the Telegram API)
- Replies: 102
- Views: 34021
Re: PureTelegram (framework for using the Telegram API)
Nothing work 
Looks like I am too stupid
Looks like I am too stupid
- Wed Jun 25, 2025 11:50 am
- Forum: Tricks 'n' Tips
- Topic: PureTelegram (framework for using the Telegram API)
- Replies: 102
- Views: 34021
Re: PureTelegram (framework for using the Telegram API)
YesCaronte3D wrote: Wed Jun 25, 2025 11:18 am BTW... Have you created and added the Telegram bot to the group?