Search found 238 matches
- Wed Jul 30, 2025 3:22 am
- Forum: Off Topic
- Topic: Good PAID Software -- Your Favorites
- Replies: 73
- Views: 52232
Re: Good PAID Software -- Your Favorites
Regardless of what Microsoft wants, my employer now only provides laptops to programmers and applications support people (like myself) that have a single 256Gb SSD. No desktops allowed. (They do allow docs.) Special application is needed for anything else, and from personal experience, they ...
- Mon Jul 21, 2025 12:20 am
- Forum: Off Topic
- Topic: Good PAID Software -- Your Favorites
- Replies: 73
- Views: 52232
Re: Good PAID Software -- Your Favorites
Who doesn't have at least a 1TB drive these days?
It's a mistake to assume everybody has oodles of space free, even in 2025
Why? MS assumes you do, and they assume it all belongs to them to do with as they wish, copy it all to their cloud, sell it, whatever they want. Mutant SOBs that they ...
- Fri Jul 11, 2025 5:27 am
- Forum: Feature Requests and Wishlists
- Topic: Packer should return progress
- Replies: 13
- Views: 593
Re: Packer should return progress
I can't remember / locate where I obtained the 7-zip dll files. The thread here called "Using 7Zip.dll in UNICODE [Resolved]" helped. A date of 2006 appears in a txt file along with the name Akita Minoru. I have both 32-bit and 64-bit versions. A Google search turned up many download sources. A ...
- Wed Jul 09, 2025 6:58 am
- Forum: Feature Requests and Wishlists
- Topic: Packer should return progress
- Replies: 13
- Views: 593
Re: Packer should return progress
I thought this was not possible so had been removed. If it can be done, please add my +100 vote. I found reference to the old PackerCallback in version 4.61. It was discontinued in PB 5. The lack of this feature is the main reason I use 7-zip and LHA dll's instead. They show a progressbar. Lets the ...
- Fri May 02, 2025 12:19 am
- Forum: Announcement
- Topic: PureBasic 6.21 is out !
- Replies: 169
- Views: 30263
Re: PureBasic 6.21 beta 7 is out !
I just noticed the icons displayed with MenuItemImage are no longer a set size. Menubar dropdowns are showing varying size icons. Documentation still says the icons should be 16 x 16. I gather this is a new change.
The icon images in my programs are loaded with
Manualsicon:
IncludeBinary "Stock ...
The icon images in my programs are loaded with
Manualsicon:
IncludeBinary "Stock ...
- Wed Apr 30, 2025 12:17 am
- Forum: Coding Questions
- Topic: Incorrect event gadget response
- Replies: 23
- Views: 2221
Re: Incorrect event gadget response
Yes, SS_NOTIFY has been added to support tooltip [...]
I hadn't realized that.
Good idea, Fred. Excellent improvement.
@ DeanH : Why would you ever want gadgets to overlap ?
If, in your sample code, they don't overlap, then everything works normally... except for the unwanted firing of an ...
- Tue Apr 29, 2025 5:13 am
- Forum: General Discussion
- Topic: Unneeded data in executable?
- Replies: 15
- Views: 3146
Re: Unneeded data in executable?
I found the UCRT option on 6.21 Beta 6 in the Compiler Options. It reduced the little MessageRequester program from 150k to 24.6k. That's still a fair bit more than the 6k the PB5.3 and 5.7 and even 6.04 generated. I tried it on my own programs. One module went from 8053k to 7729k, another from ...
- Tue Apr 29, 2025 3:02 am
- Forum: Coding Questions
- Topic: Incorrect event gadget response
- Replies: 23
- Views: 2221
Incorrect event gadget response
I am not sure this is a bug, but the behaviour is different between PB 6.21 Beta 6 and 6.11. Maybe I missed a change.
OpenWindow(1,0,0,320,200,"Test",#PB_Window_ScreenCentered | #PB_Window_SystemMenu)
TextGadget(10,10,60,320,200,"Close this window",#PB_Text_Center)
ButtonGadget(20,238,170,75,23 ...
OpenWindow(1,0,0,320,200,"Test",#PB_Window_ScreenCentered | #PB_Window_SystemMenu)
TextGadget(10,10,60,320,200,"Close this window",#PB_Text_Center)
ButtonGadget(20,238,170,75,23 ...
- Fri Apr 18, 2025 3:31 am
- Forum: Windows
- Topic: MessageRequester bug
- Replies: 22
- Views: 3766
Re: MessageRequester bug
I have both Win 10 and 11 systems. Win 11 is 23H2.
Both behave the same for me, the way BarryG describes.
With #PB_MessageRequesterYesNo the cross is grey and inactive.
With #PB_MessageRequesterYesNoCancel the cross is active and returns a Cancel.
Could it be something to do with 24H2? Or maybe ...
Both behave the same for me, the way BarryG describes.
With #PB_MessageRequesterYesNo the cross is grey and inactive.
With #PB_MessageRequesterYesNoCancel the cross is active and returns a Cancel.
Could it be something to do with 24H2? Or maybe ...
- Tue Apr 08, 2025 1:12 am
- Forum: Coding Questions
- Topic: x86 vs x64
- Replies: 18
- Views: 998
Re: x86 vs x64
I make my software available in both 32 and 64 bit flavours. It is a database system and does not use gobs of memory. (Well, maybe several hundred Mb at times.) There is no difference operationally and any difference in speed is so slight a person with a stopwatch might not even pick it up. Some ...
- Mon Apr 07, 2025 12:24 am
- Forum: Tricks 'n' Tips
- Topic: My Own OS Version test [Win Only]
- Replies: 14
- Views: 1024
Re: My Own OS Version test [Win Only]
For what its worth, here is my take. I have combined code from above. There are two versions of the WinVer procedure. WinVerS() returns a string and WinVer() returns the same number as PureBasic's OSVersion() function. It should work on quite a few versions of PureBasic. Tested on Windows 11 23H2 ...
- Fri Apr 04, 2025 11:14 pm
- Forum: Tricks 'n' Tips
- Topic: My Own OS Version test [Win Only]
- Replies: 14
- Views: 1024
Re: My Own OS Version test [Win Only]
https://en.wikipedia.org/wiki/List_of_Microsoft_Windows_versions
From that I worked out:
OSVersionDetails("9600") = "Windows 8.1"
OSVersionDetails("9200") = "Windows 8"
OSVersionDetails("7601") = "Windows 7"
OSVersionDetails("6002") = "Windows Vista"
OSVersionDetails("3790") = "Windows XP (NT 5.2 ...
From that I worked out:
OSVersionDetails("9600") = "Windows 8.1"
OSVersionDetails("9200") = "Windows 8"
OSVersionDetails("7601") = "Windows 7"
OSVersionDetails("6002") = "Windows Vista"
OSVersionDetails("3790") = "Windows XP (NT 5.2 ...
- Fri Apr 04, 2025 10:08 pm
- Forum: Tricks 'n' Tips
- Topic: My Own OS Version test [Win Only]
- Replies: 14
- Views: 1024
Re: My Own OS Version test [Win Only]
I got build 19045 on my Win 10 system, so have added the line
Code: Select all
OSVersionDetails("19045") = "Windows 10 (22H2)"
- Fri Apr 04, 2025 9:56 pm
- Forum: General Discussion
- Topic: Possible database connection problem
- Replies: 5
- Views: 1178
Re: Possible database connection problem
I worked it out. Wasn't a firewall issue. Turned out to be an old version of libmariadb.dll. This morning, I noticed a 2019 date on that file. I copied the latest from PB6.21 Beta4 into the folder and the test exe then returned a value. As I suspected, not a bug. It must have been there since PB5.70.
- Fri Apr 04, 2025 10:37 am
- Forum: General Discussion
- Topic: Possible database connection problem
- Replies: 5
- Views: 1178
Re: Possible database connection problem
I made sure libmariadb.dll is in the same folder as the exe as indicated in the documentation. I even tried including it in UseMySQLDatabase(). Made no difference. Is there something else?