Hi PureBasic team, hello PureBasic community,
the news at winfuture.de stated that the licensing of MP3 codec has been ended: http://winfuture.de/news,97637.html
Also the german wikipedia has information that the last patent ended on April 9th 2017: https://de.wikipedia.org/wiki/MP3#Patente_und ...
Search found 35 matches
- Mon May 22, 2017 7:19 pm
- Forum: Feature Requests and Wishlists
- Topic: mp3 now license free?
- Replies: 5
- Views: 3817
- Sun Nov 29, 2015 2:23 pm
- Forum: Windows
- Topic: Difficulty opening window in a thread PB5.11
- Replies: 11
- Views: 8904
Re: Difficulty opening window in a thread PB5.11
Hi everyone,
here's an example how i unterstood window threading should working; the following is only a quick example but should be threadsafe and also safe to close any subwindow even in the threaded event loop. Hopefully this is a proper native PureBasic solution and this is helpful for someone ...
here's an example how i unterstood window threading should working; the following is only a quick example but should be threadsafe and also safe to close any subwindow even in the threaded event loop. Hopefully this is a proper native PureBasic solution and this is helpful for someone ...
- Mon Oct 19, 2015 6:07 pm
- Forum: Coding Questions
- Topic: Multiple window problem
- Replies: 48
- Views: 15278
Re: Multiple window problem
Hi everyone,
playing around with some values I made the following change on the second example of acreis:
If EventWindow() = Wnd2 ; Select window.
Window2::Event_Handler(event)
; Debug EventWindow()
Debug Str(Wnd2) + " - " + str(event) ; modified line
Else ; <------ Not the second window so ...
playing around with some values I made the following change on the second example of acreis:
If EventWindow() = Wnd2 ; Select window.
Window2::Event_Handler(event)
; Debug EventWindow()
Debug Str(Wnd2) + " - " + str(event) ; modified line
Else ; <------ Not the second window so ...
- Mon Sep 30, 2013 8:51 am
- Forum: Coding Questions
- Topic: Database bug
- Replies: 5
- Views: 1318
Re: Database bug
Hey Num3,
I understand your feature request and just wanted to add a simple code example to submit an (as I think) easy and cross-platform solution to handle multiple actions for your database query. IMHO it is also more effective to "buffer" the values and free the database access for other users ...
I understand your feature request and just wanted to add a simple code example to submit an (as I think) easy and cross-platform solution to handle multiple actions for your database query. IMHO it is also more effective to "buffer" the values and free the database access for other users ...
- Tue Sep 17, 2013 2:30 pm
- Forum: Announcement
- Topic: PureBasic 5.20 LTS is out (Rockstar release)
- Replies: 78
- Views: 40968
Re: PureBasic 5.20 LTS is out (Rockstar release)
Hi Fred,
many thanks for this epic release. All these beta versions... this is an impressive kind of communication with your customers!
Unfortunately I don't use the new module system at the moment, because I don't understand it clearly and from what I get a better success for my projects when ...
many thanks for this epic release. All these beta versions... this is an impressive kind of communication with your customers!
Unfortunately I don't use the new module system at the moment, because I don't understand it clearly and from what I get a better success for my projects when ...
- Tue Sep 10, 2013 4:28 pm
- Forum: Tricks 'n' Tips
- Topic: TreeGadget with #PB_Tree_ThreeState auto #PB_Tree_Inbetween
- Replies: 0
- Views: 1470
TreeGadget with #PB_Tree_ThreeState auto #PB_Tree_Inbetween
Hi everyone,
as I didn't find anything about modifying the #PB_Tree_Inbetween state of a TreeGadget with the #PB_Tree_ThreeState parameter I tried to patch something that (at least) is working as I would expect. My problem was the (automatic) setting of the #PB_Tree_Inbetween state if I select ...
as I didn't find anything about modifying the #PB_Tree_Inbetween state of a TreeGadget with the #PB_Tree_ThreeState parameter I tried to patch something that (at least) is working as I would expect. My problem was the (automatic) setting of the #PB_Tree_Inbetween state if I select ...
- Tue Sep 03, 2013 4:43 pm
- Forum: Announcement
- Topic: PureBasic 5.20 beta 20 is out
- Replies: 360
- Views: 140836
Re: PureBasic 5.20 beta 16 is out
Hi Fred,
thanks for the whole 5.20 beta process. Really impressive how much work is included in the upcoming 5.20.
For the update check one little question: Does it search for 5.20 LTS updates or for every new "feature release" (for example 5.21, 5.30 and so on...)?
Thanks again, Harry.
thanks for the whole 5.20 beta process. Really impressive how much work is included in the upcoming 5.20.
For the update check one little question: Does it search for 5.20 LTS updates or for every new "feature release" (for example 5.21, 5.30 and so on...)?
Thanks again, Harry.
- Sun Aug 25, 2013 9:05 pm
- Forum: Announcement
- Topic: Reworking Tips and Tricks forum section
- Replies: 62
- Views: 22487
Re: Reworking Tips and Tricks forum section
Hi everyone.
My opinion: I got so much help from code samples (not only on this forum) that I would of course help by transferring it to 5.20 LTS (as much as I can).
It's a clear point that (almost) everyone cannot recode everything. So the actual editor should be able to do some kind of "rejection ...
My opinion: I got so much help from code samples (not only on this forum) that I would of course help by transferring it to 5.20 LTS (as much as I can).
It's a clear point that (almost) everyone cannot recode everything. So the actual editor should be able to do some kind of "rejection ...
- Wed Aug 21, 2013 12:13 pm
- Forum: Coding Questions
- Topic: Comparing a date value with a day string
- Replies: 5
- Views: 1281
Re: Comparing a date value with a day string
Hi wilbert and akj,
thanks a lot for your suggestions. Suddenly I had the idea for a string-type comparsion.
Should also do the job.
Stringday.s = "2013.04.17"
Datevalue.i = Date()
Comparison.s = FormatDate("%yyyy.%mm.%dd", Datevalue)
If Stringday = Comparison
Debug "Stringday is today!"
Else ...
thanks a lot for your suggestions. Suddenly I had the idea for a string-type comparsion.
Should also do the job.
Stringday.s = "2013.04.17"
Datevalue.i = Date()
Comparison.s = FormatDate("%yyyy.%mm.%dd", Datevalue)
If Stringday = Comparison
Debug "Stringday is today!"
Else ...
- Wed Aug 21, 2013 10:46 am
- Forum: Coding Questions
- Topic: Comparing a date value with a day string
- Replies: 5
- Views: 1281
Comparing a date value with a day string
Hello everyone,
maybe I'm just stupid, but I'm not able to find an easier way to compare a "day string" with a date value to see if they match. For example if a "day string" was yesterday, on a specific day last month or something.
The sample code should explain better. The "day string" is ...
maybe I'm just stupid, but I'm not able to find an easier way to compare a "day string" with a date value to see if they match. For example if a "day string" was yesterday, on a specific day last month or something.
The sample code should explain better. The "day string" is ...
- Thu Aug 15, 2013 8:14 pm
- Forum: Coding Questions
- Topic: Permission to use icons from PB 5.20 (Linux) in my menus
- Replies: 8
- Views: 1516
Re: Permission to use icons from PB 5.20 (Linux) in my menus
Hi marcoagpinto,
I just made temporary uploads for you:
http://bamsagla.de/download/famfamfam_flag_icons.zip
http://bamsagla.de/download/famfamfam_mint_icons.zip
http://bamsagla.de/download/famfamfam_silk_icons_v013.zip
Those ones are guaranteed virus free. All copyright goes to www ...
I just made temporary uploads for you:
http://bamsagla.de/download/famfamfam_flag_icons.zip
http://bamsagla.de/download/famfamfam_mint_icons.zip
http://bamsagla.de/download/famfamfam_silk_icons_v013.zip
Those ones are guaranteed virus free. All copyright goes to www ...
- Thu Aug 01, 2013 8:30 pm
- Forum: Announcement
- Topic: PureBasic 5.20 beta 20 is out
- Replies: 360
- Views: 140836
Re: PureBasic 5.20 beta 8 is ready to test !
Hey everyone,
nice to see the steps to the new 5.20 - many thanks for your work.
Would love to see the MDI-window-resize-flickering-bug fixed for the final 5.20.
Anyway - it's getting even better and better!
Harry.
nice to see the steps to the new 5.20 - many thanks for your work.
Would love to see the MDI-window-resize-flickering-bug fixed for the final 5.20.
Anyway - it's getting even better and better!

Harry.
- Mon Jul 29, 2013 8:25 am
- Forum: Windows
- Topic: PB 5.10 PathRequester() does not show 'extensions'
- Replies: 36
- Views: 13833
Re: PB 5.10 PathRequester() does not show 'extensions'
Hi infratec,
you mentioned 'work pc'. Maybe there are some group policies activated, prohibiting the expected action? Could be some explorer, system, or even internet explorer policies...
Harry.
you mentioned 'work pc'. Maybe there are some group policies activated, prohibiting the expected action? Could be some explorer, system, or even internet explorer policies...
Harry.
- Mon Jul 29, 2013 7:55 am
- Forum: Feature Requests and Wishlists
- Topic: Joining 'sort' section to 'array', 'map' and 'linkedlist'?
- Replies: 0
- Views: 857
Joining 'sort' section to 'array', 'map' and 'linkedlist'?
Hey everyone,
this is not really a bug, but I just took a look to the linkedlist doc, because there was a post in coding questions I was interested in and wanted to take a deeper look.
Suddenly I saw a command in the linkedlist topic title (within the help file) called RandomizeList(). Never heard ...
this is not really a bug, but I just took a look to the linkedlist doc, because there was a post in coding questions I was interested in and wanted to take a deeper look.
Suddenly I saw a command in the linkedlist topic title (within the help file) called RandomizeList(). Never heard ...
- Fri Jul 26, 2013 4:44 pm
- Forum: Feature Requests and Wishlists
- Topic: Simplifying The PureBasic Package
- Replies: 4
- Views: 1574
Re: Simplifying The PureBasic Package
Hi opcode,
just as side note: You can integrate the x64 compiler into the x86 PureBasic and vice versa by using the options menu and the entry compiler. Here you can add or remove several compilers within your actual used (for example x64) PureBasic. But of course you have to have both x86 and x64 ...
just as side note: You can integrate the x64 compiler into the x86 PureBasic and vice versa by using the options menu and the entry compiler. Here you can add or remove several compilers within your actual used (for example x64) PureBasic. But of course you have to have both x86 and x64 ...