Search found 1115 matches
- 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?
- 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 pmOooh, fingers crossed!
Here's one library I found: http://wptools.de/
https://www.wpcubed.com/pdf/products/pdfviewer/
- 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*
- 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?
- 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...
- 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...
- 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 \-]
- 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.
- 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 ...
- 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, ...
- 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...
- 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...
- 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...
- 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...
- 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...