Search found 74 matches

by JohnD|Dyalog
Mon Feb 26, 2024 11:37 am
Forum: Language
Topic: Making the HTMLRenderer Form Look Good
Replies: 3
Views: 14979

Re: Making the HTMLRenderer Form Look Good

Just to follow up. The API that I want to call is described here: https://learn.microsoft.com/en-us/windows/apps/desktop/modernize/apply-windows-themes But DwmSetWindowAttribute didn't change the caption for me, either in the interpreter or in a new VS solution. I've logged an issue with Microsoft ...
by JohnD|Dyalog
Mon Feb 26, 2024 10:52 am
Forum: Language
Topic: Making the HTMLRenderer Form Look Good
Replies: 3
Views: 14979

Re: Making the HTMLRenderer Form Look Good

Hi Paul, There is a new Windows thing that we might be able to plug into, I'll investigate. We've not currently done so because it would be very hard to use in everything that is ⎕WCd, but we might be able to make a special case for the HTMLRenderer. I'm not sure when/if it'll end up being viable, ...
by JohnD|Dyalog
Mon Jan 15, 2024 2:01 pm
Forum: Windows: GUI, COM/OLE/ActiveX
Topic: onKeyPress but no onKeyDown or onKeyUp
Replies: 2
Views: 16100

Re: onKeyPress but no onKeyDown or onKeyUp

Hello Rav,

I'm afraid that you are not missing anything. Dyalog only generates the KeyPress event. You will have to use ⎕NA to determine any additional information.

Bet Regards
John Daintree
by JohnD|Dyalog
Fri Nov 11, 2022 8:44 am
Forum: Language
Topic: Windows IDE Colors
Replies: 2
Views: 11873

Re: Windows IDE Colors

Hello Paul, ⎕using←'Microsoft.Win32' k←Registry.CurrentUser.OpenSubKey⊂'Software\Dyalog\Dyalog APL/W-64 18.2 Unicode\Colours\Schemes\Default' k.GetValue ⊂'Data' I'm not entirely sure what information you need. But (Currently, this is "internal" only and may change from release to release) the registr ...
by JohnD|Dyalog
Fri Aug 05, 2022 2:56 pm
Forum: UNIX and Linux
Topic: Support for Microsoft .Net 6.0
Replies: 3
Views: 88302

Re: Support for Microsoft .Net 6.0

Hello, We will be supporting .NET 6.0 "out of the box" with the next version of Dyalog, 19.0 (I cannot say yet when that will be available). Until then it should be possible to move to .NET 6.0 by making minor changes to some of Dyalog's configuration files. We cannot formally support this route ...
by JohnD|Dyalog
Tue Jul 12, 2022 10:22 am
Forum: Windows: GUI, COM/OLE/ActiveX
Topic: Excel optional parameters not working
Replies: 1
Views: 21280

Re: Excel optional parameters not working

Hi, The issue here is with the types of the "Structure" and "Windows" parameters. They are *declared* as being Variant, which the interpreter takes as meaning that multiple types are acceptable. The interpreter passes the 1s and 0s as 32 bit integer values. However the *documentation* states that ...
by JohnD|Dyalog
Mon May 10, 2021 12:10 pm
Forum: Language
Topic: PDF in HTMLRenderer
Replies: 4
Views: 9682

Re: PDF in HTMLRenderer

Ah, I'll have a look. IIRC we changed the CEF version we use. There may be a difference there. I'll see what we can do.


Best Regards
John Daintree.
by JohnD|Dyalog
Mon May 10, 2021 12:09 pm
Forum: Language
Topic: HTMLRenderer Runtime Files
Replies: 2
Views: 7721

Re: HTMLRenderer Runtime Files

Hi Paul,

Thanks for pointing this out. I'm 99% sure we don't need to ship this, but I'll confirm that last 1%.

Best Regards
John Daintree.
by JohnD|Dyalog
Fri Sep 25, 2020 8:45 am
Forum: MiServer
Topic: Options for PrintToPDF HTMLRenderer method
Replies: 1
Views: 13507

Re: Options for PrintToPDF HTMLRenderer method

Hi Pierre, We called the method PrintToPDF because that's the name of the CEF function that we call documented here: https://magpcss.org/ceforum/apidocs3/projects/(default)/CefBrowserHost.html#PrintToPDF . You'll notice that there is a CefPrintToPdfSettings structure passed to the function. However ...
by JohnD|Dyalog
Fri Sep 25, 2020 8:16 am
Forum: MiServer
Topic: How to get the PrintPreview window with HTMLRenderer ?
Replies: 2
Views: 15380

Re: How to get the PrintPreview window with HTMLRenderer ?

Hello Pierre,

There doesn't appear to be any equivalent to ShowPrintPreviewDialog in CEF. It looks like the command line option is the only way to do it.

Best Regards
John Daintree.