Search found 1023 matches

by Caronte3D
Sat Apr 20, 2024 7:38 pm
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 75
Views: 4891

Re: atomic web server threads

Good news! :D
I will test it next week.
Thanks! :wink:
by Caronte3D
Fri Apr 19, 2024 12:06 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 334
Views: 41836

Re: PureBasic 6.10 LTS is out !

BarryG wrote: Fri Apr 19, 2024 11:37 am But I also manually replace the 3 x "UPX" text bytes from the file header of the exe with zero bytes...
What a good idea! 8)
by Caronte3D
Fri Apr 19, 2024 11:03 am
Forum: Coding Questions
Topic: Check if UseSQLiteDatabase is called
Replies: 10
Views: 285

Re: Check if UseSQLiteDatabase is called

I think the use of a constants is the better way, but...
Maybe you can write a tool for PB that executed each time the code is compiled and by reading the source code you can determine if SQLite is used or not and take the needed actions
by Caronte3D
Thu Apr 18, 2024 8:53 am
Forum: Coding Questions
Topic: Would it be possible to make Socket UDP reliable by working side by side with TCP?
Replies: 7
Views: 363

Re: Would it be possible to make Socket UDP reliable by working side by side with TCP?

I don't know if relevant, but is better not use KillThread() to terminate threads, much better to do some break inside so the thread ends it self.
At least, for me, the KillThread is delicate
by Caronte3D
Thu Apr 18, 2024 8:10 am
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 75
Views: 4891

Re: atomic web server threads

Nice! 8)
I just noticed you have a PayPal button on the atomic server page, so I'm donating a little to pay you for some coffees. :wink:
by Caronte3D
Wed Apr 17, 2024 2:28 pm
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 75
Views: 4891

Re: atomic web server threads

Ok, ok...
I wasn't expecting a mature server like the big ones, but some things are essential.
I will wait until you advance more on this nice project, I would like to help you, but my web programing skills are near zero :?
Thanks again! :wink:
by Caronte3D
Wed Apr 17, 2024 10:19 am
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 75
Views: 4891

Re: atomic web server threads

I'm testing the Get/Post now and after some minor tweaks, it works nice :D but... Is there already implemented a way to use persistent variables by session/client? I mean... by example: I use Post to get the name of user then I use that variable name on next page refreshes (or another ones) without ...
by Caronte3D
Tue Apr 16, 2024 9:44 am
Forum: Coding Questions
Topic: Modify or create frame around explorer window
Replies: 10
Views: 668

Re: Modify explorer window

I think is Better if you get rid of the Delay() with something like that: :wink: EnableExplicit OpenWindow(0, 100, 100, 140, 80, "Test") Define ExplorerWindowTitle$ = "OS (C:)" ; <<<--- change this to the title of your explorer window Define hWnd = FindWindow_(0, @ExplorerWindowT...
by Caronte3D
Wed Apr 10, 2024 5:35 pm
Forum: General Discussion
Topic: How to organize/keep track of assigned #'s while coding
Replies: 5
Views: 282

Re: How to organize/keep track of assigned #'s while coding

spikey wrote: Tue Apr 09, 2024 7:47 pm I'd suggest...
Of course! That was just an example of Enumeration, not good practice. :D
by Caronte3D
Tue Apr 09, 2024 11:24 am
Forum: Windows
Topic: Detect if a window has curved corners?
Replies: 6
Views: 289

Re: Detect if a window has curved corners?

Maybe... checking the Windows version (build?) and if greater than X then rounded corners?
by Caronte3D
Tue Apr 09, 2024 8:34 am
Forum: General Discussion
Topic: How to organize/keep track of assigned #'s while coding
Replies: 5
Views: 282

Re: How to organize/keep track of assigned #'s while coding

Use enumeration:

Code: Select all

Enumeration Windows
  #Window_0
  #Window_1
  #Window_popup
  #Window_XX
  #Window_mine
EndEnumeration
by Caronte3D
Tue Apr 09, 2024 7:59 am
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 75
Views: 4891

Re: atomic web server threads

It seems like a good idea to use a DLL :wink:
by Caronte3D
Mon Apr 08, 2024 2:49 pm
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 75
Views: 4891

Re: atomic web server threads

Go, go, go! 8)
Image
by Caronte3D
Mon Apr 08, 2024 8:49 am
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 75
Views: 4891

Re: atomic web server threads

Glad to help :D
Do you think SSL would be doable for atomic server, without all the inherent complexity?