Search found 324 matches

by ar-s
Sat Jan 20, 2024 10:19 pm
Forum: Coding Questions
Topic: PB6.03, 6.04 - window parameters generate an error
Replies: 7
Views: 448

Re: PB6.03, 6.04 - window parameters generate an error

Hum... that's amazing..
I'll try with a proper install of PB 6.10
by ar-s
Sat Jan 20, 2024 2:20 pm
Forum: Coding Questions
Topic: PB6.03, 6.04 - window parameters generate an error
Replies: 7
Views: 448

Re: PB6.03, 6.04 - window parameters generate an error

You're right Caronte3D 8) i removed "param" wich is nonsense. With that one, i still have random crash when à try "openF2,closeF1, openF1 etc... " after 3 to 10 clics ; ----------------------------------- ; - INITIALISATION - ; ----------------------------------- Enumeration Fene...
by ar-s
Sat Jan 20, 2024 11:44 am
Forum: Coding Questions
Topic: PB6.03, 6.04 - window parameters generate an error
Replies: 7
Views: 448

PB6.03, 6.04 - window parameters generate an error

Hey When manipulating several windows, I have a memory access bug if I use #PB_Window_MinimizeGadget | #PB_Window_MinimizeGadget as a parameters, whereas if I only use #PB_Window_SystemMenu it works. ; ----------------------------------- ; - INITIALISATION - ; ----------------------------------- Enu...
by ar-s
Mon Mar 27, 2023 11:34 am
Forum: 3D Programming
Topic: Demo - Morphing
Replies: 32
Views: 3014

Re: Demo - Morphing

That's amaaaaaaazing !
Work so well here (pb6.1x64 W11 1080gtx) with or without debugger
:D
by ar-s
Thu Jan 19, 2023 2:05 pm
Forum: General Discussion
Topic: Upload your app's screenshot [New]
Replies: 15
Views: 5097

Re: Upload your app's screenshot [New]

After one year. The v1.0 is out.

- Change the maximum image size to 5MB
- Added bmp and svg formats
- Improved the display of "My Pictures".
- Account management (delete account, change password)
EnJoY 8)
by ar-s
Sun Nov 27, 2022 8:55 pm
Forum: Announcement
Topic: [Windows x64] RetroPixel a 2D 8-Bit (256 Color) GFX Library - DEV
Replies: 38
Views: 7677

Re: [Windows x64] RetroPixel a 2D 8-Bit (256 Color) GFX Library

It looks awesome !!!
Thanks for sharing !
by ar-s
Sat Oct 08, 2022 10:42 pm
Forum: The PureBasic Editor
Topic: Windows PureBasic IDE with latest additions
Replies: 29
Views: 4264

Re: Windows PureBasic IDE with latest additions

X64 seems to work good. TY :)
by ar-s
Mon Jul 18, 2022 10:38 am
Forum: Applications - Feedback and Discussion
Topic: StringBetween()
Replies: 23
Views: 5806

Re: StringBetween()

My contribution when there are several occurrences. Declare.b StringBetween(String$, StartString$, EndString$) Global NewList Strings.s() Procedure.b StringBetween(String$, StartString$, EndString$) Protected N = 0, S1=0, E1=0, P1=0, P2=0 ClearList(Strings()) S1 = CountString(String$, StartString$) ...
by ar-s
Tue Jul 12, 2022 8:52 pm
Forum: Coding Questions
Topic: Fast recognize big file [Resolved]
Replies: 12
Views: 833

Re: Fast recognize big file [Resolved]

Hey KCC, you should try Deepl.com transator instead of google "random" translator :)
by ar-s
Sat Jul 09, 2022 11:26 am
Forum: Applications - Feedback and Discussion
Topic: Simple Stegano Watermarker
Replies: 4
Views: 708

Re: Simple Stegano Watermarker

@Thorsten1867
Another crazy module. Great one.
note : you should add the others UseXXXDecoderImage() to the bottom exemple
by ar-s
Sat Jul 09, 2022 9:56 am
Forum: Applications - Feedback and Discussion
Topic: Simple Stegano Watermarker
Replies: 4
Views: 708

Simple Stegano Watermarker

Simple STEGANO WATERMARKER Is a program that will insert a signature of your choice in the alpha layer of the last pixels of your photos. The result is saved in PNG to keep the alpha layer. You are free to improve it (encryption key etc...) EnJoY ; ===================================================...
by ar-s
Fri Jul 08, 2022 11:42 am
Forum: Coding Questions
Topic: Monitor Off
Replies: 11
Views: 770

Re: Monitor Off

Code: Select all

#MONITOR_OFF = 2
PostMessage_(#HWND_BROADCAST, #WM_SYSCOMMAND,#SC_MONITORPOWER, #MONITOR_OFF)
End
by ar-s
Thu May 12, 2022 3:01 pm
Forum: Announcement
Topic: Downloader Tool
Replies: 0
Views: 1229

Downloader Tool

The app is out
by ar-s
Tue Apr 26, 2022 9:12 am
Forum: Off Topic
Topic: StandBySystem
Replies: 19
Views: 1758

Re: StandBySystem

Press Enter the type for example : FUNCTIONLIST
by ar-s
Wed Apr 20, 2022 4:13 pm
Forum: Feature Requests and Wishlists
Topic: Pause/resume download
Replies: 0
Views: 374

Pause/resume download

Not being able to pause and resume a download is sorely missed. Maybe with fileWeight = filesize(filename$) ReceiveHTTP[b]Resume[/b]File("http://www.purebasic.com/xxxx", filename$, fileWeight, #PB_HTTP_Asynchronous) Httprequest should be able to use the header range information . ex range ...