So what is the purpose of ...
March 27, 2024 : Version 6.10 LTS
Added - Parent window support to all requesters
I would have assumed if Parent ID flag is used the MessageRequester would appear centered with the Parent instead of the Screen.
Search found 1200 matches
- Wed Apr 23, 2025 10:46 pm
- Forum: Coding Questions
- Topic: MessageRequester Positioning
- Replies: 8
- Views: 877
- Thu Mar 27, 2025 12:55 am
- Forum: Coding Questions
- Topic: Image not showing in window with ImageGadget
- Replies: 5
- Views: 260
Re: Image not showing in window with ImageGadget
UsePNGImageDecoder() ??
- Thu Mar 06, 2025 1:23 am
- Forum: Coding Questions
- Topic: Typing Menu Letter into StringGadget.
- Replies: 8
- Views: 618
Re: Typing Menu Letter into StringGadget.
When Space is pressed a menu event is triggered
When W is press a menu event is triggered
If you are typing in the StringGadget you don't want a menu event to trigger, you want Space or W to display in the StringGadget which is why you would remove the keyboard shortcut for Space and W when the ...
When W is press a menu event is triggered
If you are typing in the StringGadget you don't want a menu event to trigger, you want Space or W to display in the StringGadget which is why you would remove the keyboard shortcut for Space and W when the ...
- Thu Mar 06, 2025 12:42 am
- Forum: Coding Questions
- Topic: Typing Menu Letter into StringGadget.
- Replies: 8
- Views: 618
Re: Typing Menu Letter into StringGadget.
You would have to add/remove "space" as well if you want "space" to workBarryG wrote: Tue Mar 04, 2025 10:08 pm Rashad, I can still type "w" into the StringGadget with your code (but not Space).

- Wed Feb 12, 2025 11:58 pm
- Forum: General Discussion
- Topic: Website incredibly slow?
- Replies: 78
- Views: 16910
Re: Website incredibly slow?
Yes... INCREDIBLY ... slow
It's also forgetting who I am and making me log in again every few sessions.

It's also forgetting who I am and making me log in again every few sessions.
- Wed Feb 12, 2025 12:19 am
- Forum: The PureBasic Editor
- Topic: Please insert hardcopy in the PB IDE
- Replies: 13
- Views: 3169
Re: Please insert hardcopy in the PB IDE
Works fine here using that Windows/PureBasic setup.Skipper wrote: Tue Feb 11, 2025 11:35 pm Trying to get it to work on Win11 with PB6.2b4 failed. Nothing happens when pressing CTRL-P, the same when running it as administrator.
Sounds like you didn't view the ReadMe.txt file and set things up correctly under Configure Tools?
- Fri Feb 07, 2025 8:19 pm
- Forum: The PureBasic Editor
- Topic: Please insert hardcopy in the PB IDE
- Replies: 13
- Views: 3169
Re: Please insert hardcopy in the PB IDE
This was made about 16 years ago as an "add-on" tool for the PureBasic IDE and I still use it today.
A simple CTRL-P in the IDE and source is sent to the Printer or a PDF.
https://www.reelmedia.org/pureproject/a ... rdcopy.zip
A simple CTRL-P in the IDE and source is sent to the Printer or a PDF.
https://www.reelmedia.org/pureproject/a ... rdcopy.zip
- Fri Jan 31, 2025 6:30 pm
- Forum: General Discussion
- Topic: PB6.20B4 - Windows - How to use self signed cert with HTTPRequest?
- Replies: 2
- Views: 2423
Re: PB6.20B4 - Windows - How to use self signed cert with HTTPRequest?
Did you look at the optional flags for HTTPRequest() command?
- Thu Jan 30, 2025 11:21 pm
- Forum: Feature Requests and Wishlists
- Topic: Implement #Embed to speed up C compilation when including binaries.
- Replies: 11
- Views: 6514
Re: Implement #Embed to speed up C compilation when including binaries.
I don't see any issue on windows 11 with c backend, it's almost instantaneous, could it be that you have limited ram and it's thrashing the the page file?
Doesn't matter what PC I use here or how powerful, the C backend compile time is slow.
The ASM backend is almost instant and always has ...
- Mon Jan 27, 2025 10:04 pm
- Forum: Coding Questions
- Topic: Why is this code now broken in v6.12?
- Replies: 24
- Views: 5218
Re: Why is this code now broken in v6.12?
If you formatted like this you would get the result of 8 when compiled as 64bit or 4 as 32bitRandy Walker wrote: Mon Jan 27, 2025 9:17 pmTried it and got Line 2: syntax error:Code: Select all
a.i = 42 Debug SizeOf(a.i)
Code: Select all
a.i=42
Debug SizeOf(a)
- Fri Jan 24, 2025 8:35 pm
- Forum: Coding Questions
- Topic: Is it currently possible to add ssl to tcp socket connections?
- Replies: 19
- Views: 6537
Re: Is it currently possible to add ssl to tcp socket connections?
You are not creating the key/cert string in the format Fred shows in his example.
( #LF$ missing in the appropriate places)
( #LF$ missing in the appropriate places)
- Wed Jan 22, 2025 5:13 am
- Forum: Tricks 'n' Tips
- Topic: Abstract rotation with color
- Replies: 11
- Views: 2575
Re: Abstract rotation with color
Kinda cool. Still has some that are to dark to see or don't do to much.
Here's a video for guys like SPH that don't seem to have a very good graphic card
https://youtu.be/wQf9_EGDzuk
Here's a video for guys like SPH that don't seem to have a very good graphic card

https://youtu.be/wQf9_EGDzuk
- Mon Jan 20, 2025 12:06 am
- Forum: Announcement
- Topic: PureBasic 6.20 is out !
- Replies: 148
- Views: 77700
Re: PureBasic 6.20 beta 3 is out !
Hi Fred, when using the new user lib do un-used procedures get pruned from the build?
According to Fred's first post...
There is some limitation for PureBasic purelibrary:
- No debugger support (in progress)
- All functions are compiled in the same object, which means the library will always ...
- Fri Jan 17, 2025 11:21 pm
- Forum: Coding Questions
- Topic: Are strings fixed in memory or can they change address?
- Replies: 6
- Views: 1015
Re: Are strings fixed in memory or can they change address?
If you want to use the .lib file found in the "YAZ/lib" folder you can make things a little simpler with Import...
Import "yaz5.lib"
ZOOM_connection_new(Host.p-ascii, portnum.i)
ZOOM_connection_option_set(ZOOM_connection.i, DatabasenamePtr.p-ascii, DatabasePtr.p-ascii)
ZOOM_query_create ...
Import "yaz5.lib"
ZOOM_connection_new(Host.p-ascii, portnum.i)
ZOOM_connection_option_set(ZOOM_connection.i, DatabasenamePtr.p-ascii, DatabasePtr.p-ascii)
ZOOM_query_create ...
- Mon Oct 14, 2024 3:11 pm
- Forum: Tricks 'n' Tips
- Topic: Protect your APPs with Mother board serial
- Replies: 9
- Views: 2173
Re: Protect your APPs with Mother board serial
Is it possible WMIC command will disappear at some point?
https://learn.microsoft.com/en-us/windows/win32/wmisdk/wmic
Important
WMIC is deprecated as of Windows 10, version 21H1; and as of the 21H1 semi-annual channel release of Windows Server. This utility is superseded by Windows PowerShell ...
https://learn.microsoft.com/en-us/windows/win32/wmisdk/wmic
Important
WMIC is deprecated as of Windows 10, version 21H1; and as of the 21H1 semi-annual channel release of Windows Server. This utility is superseded by Windows PowerShell ...