Search found 1183 matches

by dige
Wed Apr 17, 2024 3:58 pm
Forum: Coding Questions
Topic: EditorGadget() placeholder text
Replies: 3
Views: 154

EditorGadget() placeholder text

hi guys, does anyone know how I can assign a placeholder text to the editor gadget? I have not found anything with the forum search. Chat GPT has suggested an interesting, working solution - but isn't there a simpler way? ; Created by ChatGPT4 ; Konstanten für die Gadget-IDs Enumeration #Editor EndE...
by dige
Fri Apr 12, 2024 3:38 pm
Forum: Coding Questions
Topic: Get data from opened website
Replies: 7
Views: 384

Re: Get data from opened website

I haven't really understood what you want to do yet.

If you want to read dynamic data from the DOM, this is probably only possible via Javascript injection. If you want to read the static html, you can read it with GetgadgetText or use httpRequest()
by dige
Mon Apr 08, 2024 7:59 am
Forum: Windows
Topic: EXIFRead library
Replies: 8
Views: 5052

Re: EXIFRead library

Hi boddhi, I would like to give it a try it if it was suitable for x86. I'm particularly interested in whether it can read the Exif data from HEIC images correctly.

Kind regards

Dige
by dige
Sun Mar 31, 2024 6:56 pm
Forum: 3D Programming
Topic: Simple night day demo
Replies: 1
Views: 161

Re: Simple night day demo

Nice! Thx for sharing
by dige
Tue Mar 26, 2024 3:08 pm
Forum: Announcement
Topic: MixPerfect
Replies: 29
Views: 1251

Re: MixPerfect

Great, I'd love to try it out soon.
On what basis did you programme the sound playback?
by dige
Mon Mar 25, 2024 9:39 am
Forum: Coding Questions
Topic: Getting the number of lines visible in normal ListIconGadget
Replies: 2
Views: 133

Re: Getting the number of lines visible in normal ListIconGadget

Code: Select all

SendMessage_(GadgetID(#Gadget_ListIcon),#LVM_GETCOUNTPERPAGE,0,0)
by dige
Sun Mar 24, 2024 6:24 pm
Forum: Tricks 'n' Tips
Topic: Edge WebGadget - Set BrowserArguments, UserDataFolder (Windows)
Replies: 4
Views: 392

Re: Edge WebGadget - Set BrowserArguments, UserDataFolder (Windows)

Thank you breeze4me for the example of setting webgadget parameters at startup. Unfortunately, I was unable to test the second example due to a lack of intelligence and now I feel completely stupid. :cry: Would you be so kind as to add a few more explanations? What happens to the code? How can I tes...
by dige
Fri Mar 22, 2024 10:07 am
Forum: The PureBasic Editor
Topic: [IDE Tool] Search in PB Files
Replies: 10
Views: 557

Re: [IDE Tool] Search in PB Files

Thanks Hexor, that's certainly useful. How can I try it out? Which parameters are required?
by dige
Tue Mar 12, 2024 3:14 pm
Forum: Tricks 'n' Tips
Topic: atomic web server threads
Replies: 70
Views: 3716

Re: atomic web server threads

tried it with a simple index.html ... same problem
by dige
Tue Mar 12, 2024 1:43 pm
Forum: General Discussion
Topic: Question about PB's built-in FTP
Replies: 5
Views: 351

Question about PB's built-in FTP

Hi guys, what are your experiences with the internal FTP functions? For a project I need a file transfer for the first time and have to connect to an intranet Microsoft IIS FTP server. I can connect anonymously and do not need any special requirements. With a file manager such as Total Commander or ...
by dige
Sat Mar 02, 2024 6:55 pm
Forum: Announcement
Topic: PureBasic 6.10 LTS is out !
Replies: 325
Views: 40443

Re: PureBasic 6.10 beta 7 is out !

Merci beaucoup, Fred !
by dige
Fri Feb 16, 2024 2:38 pm
Forum: Coding Questions
Topic: New Edge WebGadget and old IE Functions
Replies: 9
Views: 936

Re: New Edge WebGadget and old IE Functions

Thanks Caronte3D, but with the old iE WebGadget you could get the rendered image via.

Code: Select all

hr = *m_pWebBrowser\QueryInterface(?IID_IViewObject2, @pViewObject)
So you had the complete website as one image. I need help now with the adaptation for the new edge WebGadget.
by dige
Fri Feb 16, 2024 8:24 am
Forum: Coding Questions
Topic: New Edge WebGadget and old IE Functions
Replies: 9
Views: 936

Re: New Edge WebGadget and old IE Functions

Thx Infratec. Unfortunately, this is too much for my grey brain cell. How can I use it to create a browser screenshot of a entire page?