Search found 1022 matches

by Caronte3D
Fri Apr 05, 2024 12:21 pm
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 71
Views: 4136

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

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

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

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

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

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

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)...
by Caronte3D
Sat Mar 30, 2024 9:47 pm
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 71
Views: 4136

Re: atomic web server threads

Works nice with the last update :D
by Caronte3D
Fri Mar 29, 2024 8:58 pm
Forum: Coding Questions
Topic: Find a string in *Memory
Replies: 42
Views: 1301

Re: Find a string in *Memory

Mine 11ms :? :lol: :lol:
by Caronte3D
Fri Mar 29, 2024 8:40 pm
Forum: Coding Questions
Topic: Find a string in *Memory
Replies: 42
Views: 1301

Re: Find a string in *Memory

AZJIO wrote: Fri Mar 29, 2024 8:27 pm Shouldn't DisableDebugger be placed at the beginning of the code?
Yes :wink:
by Caronte3D
Fri Mar 29, 2024 8:06 pm
Forum: Coding Questions
Topic: Find a string in *Memory
Replies: 42
Views: 1301

Re: Find a string in *Memory

DisableDebugger Procedure FindMemoryString(*Mem_, strFind_.s) Protected isEqual=-1 Protected *MemFind_ = Ascii(strFind_) Protected lenStrFind = Len(strFind_) Protected mSize=MemorySize(*Mem_) Protected *offset=*Mem_ While isEqual <> #PB_String_Equal And offset < mSize isEqual = CompareMemoryString(...
by Caronte3D
Fri Mar 29, 2024 10:48 am
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 71
Views: 4136

Re: atomic web server threads

Trying to use the server through internet (not local): I changed the IPs to match the IP on my VPS. I Opened the firewall for the atomic server. Now I can access from internet (I can get simple pages), but... I try to load a SpiderBasic example (the one called dialog.html) and it doesn't work, the b...
by Caronte3D
Fri Mar 29, 2024 10:21 am
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 71
Views: 4136

Re: atomic web server threads

On the first Atomic_Server_Init call you wrote "wwww" instead of "www" :wink:
by Caronte3D
Thu Mar 28, 2024 10:20 am
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 71
Views: 4136

Re: atomic web server threads

You creature becomes better and better :D
by Caronte3D
Thu Mar 28, 2024 10:08 am
Forum: Windows
Topic: ListIcon and image transparency
Replies: 20
Views: 867

Re: ListIcon and image transparency

tatanas wrote: Thu Mar 28, 2024 8:42 am ...but the vertical one still remains.
You must disable Modern Theme in Compiler Options as RASHAD said.