Search found 11 matches
- Sat Dec 07, 2019 1:33 am
- Forum: Announcement
- Topic: PureBasic OpenSource Projects
- Replies: 123
- Views: 172725
Re: PureBasic OpenSource Projects
Amazing Fred thank you!
- Tue Oct 01, 2019 6:58 pm
- Forum: General Discussion
- Topic: Delete forum account...
- Replies: 13
- Views: 4806
- Thu Sep 05, 2019 11:14 am
- Forum: Coding Questions
- Topic: Webgadget Open in a new tab and new window
- Replies: 8
- Views: 2120
Re: Webgadget Open in a new tab and new window
Take some time to think about it and I'm pretty sure you'll find a way!
- Mon Jul 08, 2019 1:42 pm
- Forum: Game Programming
- Topic: Je veux programmer un jeu simple
- Replies: 5
- Views: 3922
Re: Je veux programmer un jeu simple
Envoie ton rapport d'erreur et le code erratique. Autrement, c'est impossible de t'aider.
Tu commences en prog?
Tu commences en prog?
- Sat May 04, 2019 2:54 pm
- Forum: 3D Programming
- Topic: Landscape v4
- Replies: 25
- Views: 17887
Re: Landscape v4
I.n.s.a.n.e wow good job! Looking for v5 v6 and so on!
- Mon Apr 29, 2019 5:16 pm
- Forum: Coding Questions
- Topic: ButtonColor
- Replies: 18
- Views: 3518
Re: ButtonColor
I believe that you can't create any gadgets on a window from a dll that way, how the dll would know on which gadget list to create it?
Secondly, as Bisonte said, use #PB_Any.
May I see the way you call the dll functions from your main code?
Secondly, as Bisonte said, use #PB_Any.
May I see the way you call the dll functions from your main code?
- Wed Nov 09, 2016 8:26 am
- Forum: Tricks 'n' Tips
- Topic: Java over JNI using a PB-dll
- Replies: 6
- Views: 6180
Re: Java over JNI using a PB-dll
Thanks!jack wrote:I found a copy PBJNI_1.0
- Tue Nov 08, 2016 9:25 pm
- Forum: Tricks 'n' Tips
- Topic: Java over JNI using a PB-dll
- Replies: 6
- Views: 6180
Re: Java over JNI using a PB-dll
Is there anybody having the zip file? The link is dead now 

- Fri Jan 22, 2016 11:13 am
- Forum: Feature Requests and Wishlists
- Topic: [Implemented] Linux PB is missing constants #Black, #Blue...
- Replies: 8
- Views: 2644
Re: Linux PB is missing color constants like #Black, #Blue
You can use this list of color constants: (warning, it's a long list :D )
#AcidGreen = $1ABFB0; RGB (176, 191, 26)
#Aero = $E8B97C ; RGB (124, 185, 232)
#AeroBlue = $E5FFC9 ; RGB (201, 255, 229)
#AfricanViolet = $BE84B2; RGB (178, 132, 190)
#AirForceBlue_RAF = $A88A5D; RGB (93, 138, 168 ...
#AcidGreen = $1ABFB0; RGB (176, 191, 26)
#Aero = $E8B97C ; RGB (124, 185, 232)
#AeroBlue = $E5FFC9 ; RGB (201, 255, 229)
#AfricanViolet = $BE84B2; RGB (178, 132, 190)
#AirForceBlue_RAF = $A88A5D; RGB (93, 138, 168 ...
- Thu Jul 04, 2013 10:30 pm
- Forum: Announcement
- Topic: PureBasic 5.20 beta 20 is out
- Replies: 360
- Views: 142642
Re: PureBasic 5.20 beta 5 is ready to test !
It looks like people don't conceive that this thread is about the release new version of PureBasic, kind of disappointing.. But anyways, thank you for this release!Fred wrote:Then open a new thread instead of posting here or your comment will be lost.

- Thu Jul 04, 2013 3:05 am
- Forum: Feature Requests and Wishlists
- Topic: Extend UseModule to accept a file name as 2nd argument
- Replies: 3
- Views: 1147
Re: Extend UseModule to accept a file name as 2nd argument
Code: Select all
Macro UseModuleLazy(name,file)
XIncludeFile file
UseModule name
EndMacro