Search found 2882 matches
- Mon Mar 17, 2025 1:09 am
- Forum: Bugs - Windows
- Topic: SendMail Fails in 6.10
- Replies: 3
- Views: 2246
Re: SendMail Fails in 6.10
It would be handy if there was a way of capturing the debug information as a string - that way end users could let us know that information if needed.
- Tue Dec 05, 2023 8:53 am
- Forum: The PureBasic Editor
- Topic: Automatic splitting code across lines...
- Replies: 44
- Views: 35293
Re: Automatic splitting code across lines...
Bump, Bump! 

- Wed Jun 01, 2022 11:49 am
- Forum: Announcement
- Topic: PureBasic 6.00 released !
- Replies: 626
- Views: 213376
Re: PureBasic 6.00 Beta 8 released !
I mean if you include /COMMENTED then the compile works and the executable is generated, without that parameter and the executable does not get generated and the compiler outputs loads of odd errors.
(I've edited "comment" in the code to make it clearer what I meant, sorry)
(I've edited "comment" in the code to make it clearer what I meant, sorry)
- Tue May 31, 2022 10:51 am
- Forum: Announcement
- Topic: PureBasic 6.00 released !
- Replies: 626
- Views: 213376
Re: PureBasic 6.00 Beta 8 released !
@Barry6 : I have similar issues, so I tried to track it down.
; build.pb
param$=#DQUOTE$+"ReportComplete.pb"+#DQUOTE$
param$+" /OUTPUT "+#DQUOTE$+"ReportComplete.exe"+#DQUOTE$
param$+" /ICON "+#DQUOTE$+"images\liveicon.ico"+#DQUOTE$
param$+" /OPTIMIZER"
param$+" /XP"
param$+" /USER"
param ...
; build.pb
param$=#DQUOTE$+"ReportComplete.pb"+#DQUOTE$
param$+" /OUTPUT "+#DQUOTE$+"ReportComplete.exe"+#DQUOTE$
param$+" /ICON "+#DQUOTE$+"images\liveicon.ico"+#DQUOTE$
param$+" /OPTIMIZER"
param$+" /XP"
param$+" /USER"
param ...
- Tue Feb 15, 2022 12:09 am
- Forum: Tricks 'n' Tips
- Topic: Setting and getting the Data Pointer...
- Replies: 6
- Views: 2917
Re: Setting and getting the Data Pointer...
I would do, but i I don't know how to get it moved to feature requests? Maybe an admin can do this?
Shame it hasn't been made native yet, coded it almost 15 years ago...
Shame it hasn't been made native yet, coded it almost 15 years ago...
- Fri Oct 22, 2021 5:45 am
- Forum: Announcement
- Topic: Blog post !
- Replies: 325
- Views: 124692
Re: Blog post !
For Universal, I think they only need to be appended together. So two would need to be included and the universal generated from those two at compile time.
- Tue Sep 21, 2021 8:48 am
- Forum: Feature Requests and Wishlists
- Topic: Then statement for ONLY single line IFs
- Replies: 11
- Views: 4573
Re: Then statement for ONLY single line IFs
imho it should be added, I wouldn't use it that much - but I don't seen any harm as it' would be optional - it may even be trivial to add?
THEN could simply mean that the next CR is actually an ENDIF CR combo.
THEN could simply mean that the next CR is actually an ENDIF CR combo.
- Tue Sep 07, 2021 12:16 pm
- Forum: Coding Questions
- Topic: [solved] PB a4, debugger quits unexpectedly
- Replies: 3
- Views: 3695
Re: PB a4, debugger quits unexpectedly
Well spotted, that works now - so not a bug (32/64 bit thing).
- Tue Sep 07, 2021 12:03 pm
- Forum: Coding Questions
- Topic: [solved] PB a4, debugger quits unexpectedly
- Replies: 3
- Views: 3695
[solved] PB a4, debugger quits unexpectedly
The debugger quit unexpectedly (both C and asm compilers).
The code that crashed the debugger was the verifyfile procedure in this, it works on previous versions:
(previously I'd tried it on the 32 bit version of PB - so maybe it's a 32/64 bit thing?)
; wintrust.pbi
;!Author: Gustavo J ...
The code that crashed the debugger was the verifyfile procedure in this, it works on previous versions:
(previously I'd tried it on the 32 bit version of PB - so maybe it's a 32/64 bit thing?)
; wintrust.pbi
;!Author: Gustavo J ...
- Thu Jul 15, 2021 11:13 am
- Forum: Feature Requests and Wishlists
- Topic: Printer
- Replies: 2
- Views: 3280
Re: Printer
The print library needs improving, hopefully that will happen sometime in pb6.xx...
- Tue Jul 13, 2021 6:54 pm
- Forum: Coding Questions
- Topic: Immediate Mode Graphical User interface
- Replies: 6
- Views: 4420
Re: Immediate Mode Graphical User interface
This looks good. Now that PureBasic will soon be compiled in C, it may be easier to interface to?
- Fri Jul 09, 2021 4:10 pm
- Forum: Announcement
- Topic: PureBasic 6.00 released !
- Replies: 626
- Views: 213376
Re: PureBasic 6.00 Alpha 3 released !
That's a shame, maybe gcc could be modded to send back progress?
- Fri Jul 09, 2021 3:51 pm
- Forum: Announcement
- Topic: PureBasic 6.00 released !
- Replies: 626
- Views: 213376
Re: PureBasic 6.00 Alpha 3 released !
re alpha 3: My >60,000 line program compiles and works on both the asm and c compilers! :)
@Fred, it would be good if the 'compilation in progress' window let the programmer know what was going on after the initial 'Creating executable file' - as it can take some time, especially if optimisation ...
@Fred, it would be good if the 'compilation in progress' window let the programmer know what was going on after the initial 'Creating executable file' - as it can take some time, especially if optimisation ...
- Mon Jun 21, 2021 4:47 pm
- Forum: Announcement
- Topic: PureBasic 6.00 released !
- Replies: 626
- Views: 213376
Re: PureBasic 6.00 Alpha 2 released !
This is already reported in bugs, I'm sure @fred has sorted it for alpha 3.
- Mon May 24, 2021 3:38 pm
- Forum: Coding Questions
- Topic: ASM syntax error
- Replies: 13
- Views: 5068
Re: ASM syntax error
The eventual output will be assembler, but via the C compiler. The C compiler may have had more time invested in optimising the output than regular PureBasic - so it could be faster.