Search found 430 matches

by Cyllceaux
Tue Sep 13, 2022 7:10 am
Forum: Coding Questions
Topic: List Parameters in DLLs
Replies: 2
Views: 257

List Parameters in DLLs

Hello there... I have a little problem. ProcedureDLL readCryptDB(file.s,List seeds.q()) MessageRequester("test",Str(ListSize(seeds()))) EndProcedure This code works in ASM Backend, but not in C-Backend. I know, in the Readme is written, that you should not use Arrays, Maps and Lists as par...
by Cyllceaux
Sat Aug 27, 2022 11:02 am
Forum: Coding Questions
Topic: (Solved) Debug is ignored
Replies: 2
Views: 241

Re: Debug is ignored

Yes... I know...

This is the reason why I don't understand the same worked in different projects.

But you are right, thanks
by Cyllceaux
Sat Aug 27, 2022 10:26 am
Forum: Coding Questions
Topic: (Solved) Debug is ignored
Replies: 2
Views: 241

(Solved) Debug is ignored

I'm not sure why, but in this procedure the debug is complete ignored. The interesting fact is, I use the same procedure in 2 different project. In one it works, in the other it doesn't. It seems like the DebugLevel does not work correctly Enumeration _logger #_LOG_NONE #_LOG_ERROR #_LOG_WARN #_LOG_...
by Cyllceaux
Mon May 30, 2022 9:17 am
Forum: Applications - Feedback and Discussion
Topic: [Modules] TileButton Gadget (all OS / DPI)
Replies: 7
Views: 1001

Re: [Modules] TileButton Gadget (all OS / DPI)

BarryG wrote: Sun May 29, 2022 10:05 pmScreenshots?
Are in the first post. :)
by Cyllceaux
Sun May 29, 2022 10:14 am
Forum: Coding Questions
Topic: What's the best doc generator for PB?
Replies: 2
Views: 360

Re: What's the best doc generator for PB?

I wrote my own one. https://github.com/Cyllceaux/MyTable/tree/v2 It parses your code and creates "Markdown" Files. Example: https://github.com/Cyllceaux/MyTable/blob/v2/Doc/mytable.pbi.md CompilerIf Not Defined(UPDATE_DOC,#PB_Constant) #UPDATE_DOC=0 CompilerEndIf CompilerIf Not Defined(UPD...
by Cyllceaux
Wed May 25, 2022 9:46 am
Forum: Coding Questions
Topic: A PB bug on resizewindow with bordless window?
Replies: 1
Views: 230

Re: A PB bug on resizewindow with bordless window?

It's not a bug. You never check, if you move your mouse outside the red square, when you LeftClick. ; EnableExplicit ; Bug with Shared ? Global ww=400 Global wh=200 Global xwin=500 Global xwin0=500 Global MS=#False Procedure Exit() End EndProcedure Procedure LeftMouseDown() Shared MouseDown, OffsetX...
by Cyllceaux
Wed May 11, 2022 6:45 am
Forum: Feature Requests and Wishlists
Topic: hbox, vbox, gridbox, multibox, singlebox from Dialog lib for coders
Replies: 3
Views: 524

Re: hbox, vbox, gridbox, multibox, singlebox from Dialog lib for coders

I prefer the Dialog... Because I'm to lazy to write resizing and alignment methods every time.
Thorsten had often parameters to ther gadges like "UseCanvas". This is for the Dialog.
by Cyllceaux
Sat Apr 16, 2022 12:50 pm
Forum: Coding Questions
Topic: ListViewGadget with 2 columns
Replies: 7
Views: 404

Re: ListViewGadget with 2 columns

Why don't you use the ListIconGadget?

You can user AddGadgetColumn :)
by Cyllceaux
Mon Mar 28, 2022 12:01 pm
Forum: Feature Requests and Wishlists
Topic: Add Haiku as a supported OS
Replies: 11
Views: 1310

Re: Add Haiku as a supported OS

Long time ago (early 2005) I used Zeta OS (which was in unofficial clone of BeOS)
I loved that OS, cause it was damn small and amazing fast.

I never changed to Haiku, cause there where no programming language I liked to use for it.
by Cyllceaux
Wed Mar 09, 2022 3:41 pm
Forum: Off Topic
Topic: What is the Word
Replies: 1
Views: 566

Re: What is the Word

Image

BIRD IS THE WORD!!!
by Cyllceaux
Tue Mar 08, 2022 8:58 am
Forum: Announcement
Topic: PureBasic 6.00 released !
Replies: 626
Views: 150879

Re: PureBasic 6.00 Beta 5 released !

skywalk wrote: Tue Mar 08, 2022 4:13 am You forgot to disable debugger. C+optimize is fastest.

Code: Select all

...
1327, 1356, diff: 29
...
WTF do you have for a PC???? I have a Ryzen 9 5950X with ~5GHz and still have around 6 seconds runtime
by Cyllceaux
Mon Mar 07, 2022 9:33 am
Forum: General Discussion
Topic: include c headers and modify compiler flags with inline c
Replies: 41
Views: 6099

Re: include c headers and modify compiler flags with inline c

I changed it a little bit for doing this: CompilerIf #PB_Compiler_Backend=#PB_Backend_C !//gccflags -mtune=znver3 -march=znver3 ; !//gccpath C:\Users\Silko Pillasch\Downloads\gcc11\bin\gcc.exe ; !//fakegcc CompilerEndIf fakegcc creates a MessageRequester to show the parameters for the gcc gccpath ov...
by Cyllceaux
Sun Mar 06, 2022 1:59 pm
Forum: Announcement
Topic: PureBasic 6.00 released !
Replies: 626
Views: 150879

Re: PureBasic 6.00 Beta 5 released !

To me is hard to say it, but MS C++ is the most advanced one everytime. 'gcc' is garbage at his side. Long time ago, intel and IBM had the most advanced compiler. There were sometimes Performanceboosts up to 80%... But now... I don't know which one is the best. I like the lcc and the tcc... small, ...
by Cyllceaux
Sun Mar 06, 2022 1:37 pm
Forum: Announcement
Topic: PureBasic 6.00 released !
Replies: 626
Views: 150879

Re: PureBasic 6.00 Beta 5 released !

Oh... I hate the gcc... everytime you want to do something cool, you see: "Oh, it is in an other version of the gcc" the mingw-gcc is from 2018 and the modernst CPU in this build is then Zen1 from 2017. Yes, it is a windows-Problem and Yes I can recompile it for windows, too. So, I mostly ...
by Cyllceaux
Wed Feb 23, 2022 10:37 am
Forum: General Discussion
Topic: Regular Expression Test
Replies: 8
Views: 3298

Re: Regular Expression Test

Nice :), but I had to change the line 153 to

Code: Select all

DeclareDLL SciNotification(Gadget, *scinotify.SCNotification)