Search found 304 matches

by Derren
Thu Nov 02, 2023 2:09 pm
Forum: Coding Questions
Topic: Drag&Drop from Outlook (Express) - Possible?
Replies: 90
Views: 29099

Re: Drag&Drop from Outlook (Express) - Possible?

Aaah guys, first of all thanks for all the effort you already put it.I would have thought it was easier to accomplish. Sadly it doesn't work (now). Both codes, Hexor's "re-write" and this code here produce a file that is corrupted and can't be opened by outlook. The saved .msg file only co...
by Derren
Fri Mar 03, 2023 9:38 am
Forum: Coding Questions
Topic: Dragging window blocks timer (more than you think)
Replies: 13
Views: 1270

Re: Dragging window blocks timer (more than you think)

Thanks guys, exactly what I needed right now. I have a sort of clock display (rounded window without title) that needs dragging around with the mouse and the clock stopped during the dragging. I know about BindEvent() but if Ihaven't done some programming for a while (in PB anyway) I start with the ...
by Derren
Wed Jul 06, 2022 2:49 pm
Forum: General Discussion
Topic: Webview2 control - Chromium browser for Purebasic (Windows) [Jan 1, 2024]
Replies: 171
Views: 55382

Re: Webview2 control - Chromium browser for Purebasic (Windows)

Yay, I can finally use it. One questions. Is there a way to change (catch) the error message for a missing DLL? And to possibly rename the DLL (if the license permits this)? I couldn't find the call for the DLL in the code, perhaps it's hidden in some lib file or other. Since the DLL is necessary ev...
by Derren
Thu Feb 10, 2022 3:51 pm
Forum: Windows
Topic: New UserLib : NotifyIcon library
Replies: 19
Views: 9237

Re: New UserLib : NotifyIcon library

Here is a code that "runs" (doesn't produce any syntax errors that come from the code being old). But it doesn't do anything. I have an VBA example that uses Shell_NotifyIcon() to display a notification popup, so this function still works in Windows 10. I just cant get it to run in PB (can...
by Derren
Tue Oct 05, 2021 7:39 am
Forum: Tricks 'n' Tips
Topic: Alternate Console
Replies: 20
Views: 16258

Re: Alternate Console

it's okay. I am currently using a console to display some status messages and I would have liked to add the ability to hide the console like a window and unhide it via systray or something. It's not possible to hide a console with PB commands and the APIs I found don't really work either. I think yo...
by Derren
Tue Oct 05, 2021 7:35 am
Forum: General Discussion
Topic: Webview2 control - Chromium browser for Purebasic (Windows) [Jan 1, 2024]
Replies: 171
Views: 55382

Re: Webview2 control - Chromium browser for Purebasic (Windows)

Hey, this looks promising. Thanks for posting. But now, over a year later, every machine (including mine) has Edge installed and the example codes still fail to run. Does it still not work without the runtime or does the check in the code need an update? --------------------------- Error -----------...
by Derren
Thu Sep 30, 2021 12:28 pm
Forum: Tricks 'n' Tips
Topic: Alternate Console
Replies: 20
Views: 16258

Re: Alternate Console

Hey,

I just wanted to test your code. Sadly you offer it only on your website for a payment. :(
by Derren
Wed Feb 03, 2021 3:33 pm
Forum: General Discussion
Topic: What's the cheapest mini Pc that can run PureBasic programs?
Replies: 18
Views: 3662

Re: What's the cheapest mini Pc that can run PureBasic progr

Do you need connectivity? I bought a cheap windows tablet ages ago. "Odys Wintab 8". It was like 80 or maybe 100 bucks. Terribly slow and the display is super bad (angles), but it's a normal windows 8 PC running an x86 Intel Chip. PB and any normal PB program runs fine (hardware permitting...
by Derren
Mon Sep 28, 2020 10:58 am
Forum: Off Topic
Topic: Sciter.JS KickStarter
Replies: 5
Views: 2141

Re: Sciter.JS KickStarter

wouldn't any of the mentioned companies benefit from an open source version of the software they use?
not sure why a software that seems to be so commercially successful needs kickstarter money from "mere mortals"
by Derren
Tue Sep 22, 2020 3:13 pm
Forum: Tricks 'n' Tips
Topic: Module ActiveScript for VBScript and JScript with PB-Runtime Variables
Replies: 46
Views: 22256

Re: Module ActiveScript for VB-Script with PB-Runtime Variab

Thanks. Found the solution of installing drivers on another thread and also in many threads in other forums, but that's no an option on the machines I want to run this software, unfortunately.
by Derren
Tue Sep 22, 2020 2:03 pm
Forum: Tricks 'n' Tips
Topic: Module ActiveScript for VBScript and JScript with PB-Runtime Variables
Replies: 46
Views: 22256

Re: Module ActiveScript for VB-Script with PB-Runtime Variab

Hi mk-soft, is there any way I can use the 32bit version of the scripting host? I'm trying the following VBS code, that I found online, to access a Microsoft Access accdb file. Set conn = CreateObject("ADODB.Connection") ' Connect to the database strConnect = "Provider=Microsoft.ACE.O...
by Derren
Sat Aug 15, 2020 11:07 pm
Forum: Coding Questions
Topic: Stream Deck Plugin
Replies: 3
Views: 952

Re: Stream Deck Plugin

If you can do it in JS, why bother using PB? Do you need system access (file access, or like C++ example CPU info etc..)?
by Derren
Wed Jul 29, 2020 3:50 pm
Forum: Feature Requests and Wishlists
Topic: Duplicates Imports should be ignored instead of compiler err
Replies: 6
Views: 2699

Re: Duplicates Imports should be ignored instead of compiler

I guess this is not possible, either? Import "test.lib" Test() EndImport Import "another.lib" Test() ; same function name, should throw an error? EndImport If so, you can still use Defined? Import "test.lib" Test() EndImport CompilerIf Not Defined(Test(), #PB_Procedure ...
by Derren
Wed Jul 15, 2020 12:53 pm
Forum: Coding Questions
Topic: Floyd–Steinberg Not Working Quite Right....
Replies: 8
Views: 1612

Re: Floyd–Steinberg Not Working Quite Right....

Did you try greyscale? The bright pink and bright cyan spots might come from an overflow or underrun that is not apparent in greyscale (and assuming the original algorithm is flawless and no checks to prevent this are in place, should and could not possibly be an issue in greyscale) Did you check th...