Search found 1115 matches

by Grovkillen
Wed Oct 02, 2024 2:48 pm
Forum: Enhancement Suggestions
Topic: Delete to Recycle Bin
Replies: 1
Views: 108

Re: Delete to Recycle Bin

It's possible to use powershell to do that but you're wanting a quicker way I guess?
by Grovkillen
Mon Sep 30, 2024 4:04 pm
Forum: Enhancement Suggestions
Topic: PDF Display in a Dialog
Replies: 8
Views: 4771

Re: PDF Display in a Dialog

There are libraries for native rendering but most would cost money for MS to implement.
Grovkillen wrote:
Sat Jul 27, 2024 5:45 pm
Oooh, fingers crossed!

Here's one library I found: http://wptools.de/

https://www.wpcubed.com/pdf/products/pdfviewer/
by Grovkillen
Mon Sep 30, 2024 3:56 pm
Forum: Enhancement Suggestions
Topic: PDF Display in a Dialog
Replies: 8
Views: 4771

Re: PDF Display in a Dialog

*double post*
by Grovkillen
Thu Sep 26, 2024 7:17 am
Forum: Enhancement Suggestions
Topic: Dialog (interaction) trigger Windows sound
Replies: 5
Views: 8598

Re: Dialog (interaction) trigger Windows sound

Some thoughts about this?
by Grovkillen
Wed Sep 25, 2024 3:54 pm
Forum: Enhancement Suggestions
Topic: ISO 8601 timestamp
Replies: 5
Views: 44190

Re: ISO 8601 timestamp

Bump on a GetIsoTimestamp command :) ISO 8601 defines several formats for representing date and time depending on the use case. Below are the nine main formats covered by the standard: 1. Calendar Date Format: YYYY-MM-DD Example: 2024-09-25 Describes a specific date in a calendar with year, month, a...
by Grovkillen
Wed Sep 25, 2024 11:14 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: [added in 15.0.27] Scrollable menu/dialog

I downloaded the image from this example and found out that the Viewer will automatically load a href:ed local html file if clicked: Dialog>Dialog1 object Dialog1: TForm BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 400 ClientWidth = 400 object MSHTMLViewer1: tMSHTMLViewer Lef...
by Grovkillen
Wed Sep 25, 2024 10:35 am
Forum: Technical / Scripting
Topic: Strip out specific characters from string
Replies: 8
Views: 653

Re: Strip out specific characters from string

I suspect the "-" isn't correct RegEx...

Code: Select all

[^a-zA-Z0-9 \-]
by Grovkillen
Wed Sep 25, 2024 10:17 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: [added in 15.0.27] Scrollable menu/dialog

@Marcus. Perhaps look and see what the _OBJ is passing when using the OnObjectClick? It seems to lock MS if used.
by Grovkillen
Wed Sep 25, 2024 8:58 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: [added in 15.0.27] Scrollable menu/dialog

Cluster buttons on the right side, test to resize the dialog and you'll see that the buttons adapt. Dialog>Dialog1 object Dialog1: TForm BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 220 ClientWidth = 250 object MSHTMLViewer1: tMSHTMLViewer Left = 0 Top = 0 Width = 250 Height ...
by Grovkillen
Wed Sep 25, 2024 8:55 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: [added in 15.0.27] Scrollable menu/dialog

One button is in the lower left while the other one is in the lower right: Dialog>Dialog1 object Dialog1: TForm BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 220 ClientWidth = 250 object MSHTMLViewer1: tMSHTMLViewer Left = 0 Top = 0 Width = 250 Height = 220 Anchors = [akLeft, ...
by Grovkillen
Wed Sep 25, 2024 8:49 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: [added in 15.0.27] Scrollable menu/dialog

Not sure about the use-case but here's a way of adding buttons with data stored in the forms attributes: Dialog>Dialog1 object Dialog1: TForm BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 220 ClientWidth = 250 object MSHTMLViewer1: tMSHTMLViewer Left = 0 Top = 0 Width = 250 He...
by Grovkillen
Wed Sep 25, 2024 8:42 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: [added in 15.0.27] Scrollable menu/dialog

Snippet with multiple submit/forms: Dialog>Dialog1 object Dialog1: TForm BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 220 ClientWidth = 250 object MSHTMLViewer1: tMSHTMLViewer Left = 0 Top = 0 Width = 250 Height = 220 Anchors = [akLeft, akTop, akRight, akBottom] end end EndDi...
by Grovkillen
Wed Sep 25, 2024 8:35 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: [added in 15.0.27] Scrollable menu/dialog

Just the same example but with some extra style and settings for elements (nowrap etc.): Dialog>Dialog1 object Dialog1: TForm BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 220 ClientWidth = 250 object MSHTMLViewer1: tMSHTMLViewer Left = 0 Top = 0 Width = 250 Height = 220 Ancho...
by Grovkillen
Wed Sep 25, 2024 8:05 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: [added in 15.0.27] Scrollable menu/dialog

Here's a more in-depth code snippet for inspiration: Dialog>Dialog1 object Dialog1: TForm BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 220 ClientWidth = 250 object MSHTMLViewer1: tMSHTMLViewer Left = 0 Top = 0 Width = 250 Height = 220 Anchors = [akLeft, akTop, akRight, akBott...
by Grovkillen
Wed Sep 25, 2024 6:23 am
Forum: General Discussion
Topic: [added in 15.0.27] Scrollable menu/dialog
Replies: 27
Views: 20413

Re: Scrollable menu/dialog

This now works like a charm! 15.0.27 Dialog>Dialog1 object Dialog1: TForm ClientWidth = 250 ClientHeight = 120 object MSHTMLViewer1: tMSHTMLViewer Left = 0 Top = 0 Width = 250 Height = 120 end end EndDialog>Dialog1 LabelToVar>form_html,TEMP_html,1,1,*/ SetDialogProperty>Dialog1,MSHTMLViewer1,HTML,TE...
Sign up to our newsletter for free automation tips, tricks & discounts