Search found 1015 matches

by Caronte3D
Tue Apr 16, 2024 9:44 am
Forum: Coding Questions
Topic: Modify or create frame around explorer window
Replies: 10
Views: 322

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: 245

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: 241

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: 245

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: 64
Views: 3458

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: 64
Views: 3458

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: 64
Views: 3458

Re: atomic web server threads

Glad to help :D
Do you think SSL would be doable for atomic server, without all the inherent complexity?
by Caronte3D
Sat Apr 06, 2024 9:08 pm
Forum: Applications - Feedback and Discussion
Topic: Color Quantizing Image Editor
Replies: 36
Views: 23137

Re: Color Quantizing Image Editor

Seven years later... :wink:
by Caronte3D
Fri Apr 05, 2024 12:21 pm
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 64
Views: 3458

Re: atomic web server threads

Awesome! :shock:
by Caronte3D
Wed Apr 03, 2024 7:01 pm
Forum: Feature Requests and Wishlists
Topic: (Solved in 6.10) Close a minimized window (Win)
Replies: 4
Views: 165

Re: Close a minimized window (Win)

Wow! :shock:
You found a problem on my code related to close a window from the bar when the window is minimized.

We never do things the same as the users of our applications :D

I hate bugs :evil:

BTW, Thanks! :P
by Caronte3D
Tue Apr 02, 2024 10:13 pm
Forum: Tricks 'n' Tips
Topic: create icon pack windows
Replies: 24
Views: 898

Re: create icon pack windows

Yeah! rebuid icon cache does the trick :D
by Caronte3D
Tue Apr 02, 2024 9:49 pm
Forum: 3D Programming
Topic: Physics - Airplane
Replies: 28
Views: 6554

Re: Physics - Airplane

No problems here.
Nice demo!
by Caronte3D
Tue Apr 02, 2024 8:03 am
Forum: Coding Questions
Topic: Incompatibilties after version 6.00
Replies: 7
Views: 389

Re: Incompatibilties after version 6.00

I think... Better stay with the old version of PB you used for this project and change it to the latest one only for the next project.
by Caronte3D
Mon Apr 01, 2024 10:17 am
Forum: Tricks 'n' Tips
Topic: create icon pack windows
Replies: 24
Views: 898

Re: create icon pack windows

Seems you forgot the 48 size?
Also... I don't know if it's normal, but when browsing the folder where the icon file is, in the Windows file manager only the first two icons (the smallest ones) are shown, when changing the view to large it doesn't show the large icon.
by Caronte3D
Sun Mar 31, 2024 7:14 pm
Forum: Coding Questions
Topic: Question to Transparence
Replies: 10
Views: 282

Re: Question to Transparence

I don't know if that's what you want... EnableExplicit Define w=DesktopScaledX(200) Define h=DesktopScaledY(200) OpenWindow(0,0,0,640,220,"Test",#PB_Window_SystemMenu|#PB_Window_ScreenCentered) ImageGadget(1,10,10,200,200,0,#PB_Image_Border) ImageGadget(2,220,10,200,200,0,#PB_Image_Border)...