Search found 67 matches

by administrator
Fri Aug 11, 2023 10:24 am
Forum: Power Apps
Topic: Add version number to Canvas App
Replies: 0
Views: 63

Add version number to Canvas App

Edit the Canvas App and click on "App" and select "OnStart" in the dropdown. Add this script: Set( appVersion, CountRows( PowerAppsforMakers.GetAppVersions( LookUp( PowerAppsforMakers.GetApps().value, properties.displayName = "My Inventory", name ) ).value ) ); Add a te...
by administrator
Wed Aug 09, 2023 11:38 am
Forum: Office365
Topic: Add SearchBox in Excel
Replies: 0
Views: 115

Add SearchBox in Excel

When you want to search in Excel you can use CTRL-F but you could use a SearchBox: https://ewouds.com/download/file.php?id=33&t=1 When you've created an Excel sheet with multiple tabs, select a tab and click in the first field. Now click on HOME --> Format as Table: https://ewouds.com/download/f...
by administrator
Wed Aug 02, 2023 3:58 pm
Forum: Power Apps
Topic: Filter Gallery on ComboBox
Replies: 0
Views: 62

Filter Gallery on ComboBox

Search( Filter( {DataSource of Collection} , (IsBlank( ClassMethodeDropDown.Selected.Id ) || ClassificationMethodId = ClassMethodeDropDown.Selected.Id) && (IsBlank( ClassGrpDropDown.Selected.Id ) || ClassificationGroupId = ClassGrpDropDown.Selected.Id) && (IsBlank( ClassificationDrop...
by administrator
Mon Nov 21, 2022 1:22 pm
Forum: Power Apps
Topic: Change Invite Email PowerApps Portal
Replies: 0
Views: 154

Change Invite Email PowerApps Portal

It is possible to change the invite email message. For this a few steps are needed to get to this: Go to https://make.powerapps.com. Open the "Model Driven App". In the Upper Right Corner, click the "Settings" Button. Select Advanced Settings. Then click in the top bar on Setting...
by administrator
Mon Nov 21, 2022 12:17 pm
Forum: Power Apps
Topic: Change text on login page PowerApps Portal
Replies: 0
Views: 128

Change text on login page PowerApps Portal

Example: External Login Form.

Go to:
  • Portals > Content Snippets.
  • Select: Account/SignIn/SignInExternalFormHeading.
  • Change the value on the bottom.
Image in Dutch
Image in Dutch
by administrator
Mon Nov 21, 2022 11:20 am
Forum: Power Apps
Topic: Set Auto Logoff B2C users Portal App
Replies: 0
Views: 127

Set Auto Logoff B2C users Portal App

Users who login with a B2C account are standard logged on for 24 hours. This can be set in the Azure B2C AD portal. Go to https://portal.azure.com/ and click on Azure AD or Azure AD B2C. Click on "User Flows". Select the correct UserFlow. Click on "Properties". Change the session...
by administrator
Fri Nov 04, 2022 3:31 pm
Forum: Power Apps
Topic: Allow only .xlsx as upload
Replies: 0
Views: 146

Allow only .xlsx as upload

In AttachmentControl --> OnAddFile add the following line: If(Not(EndsWith(First(Self.Attachments).Name, ".xlsx")) ,Notify("Only .xlsx files are allowed", NotificationType.Error); Reset(Self)) This checks if the extension is .xlsx otherwise it shows an error message and removes t...
by administrator
Thu Dec 23, 2021 4:01 pm
Forum: Software
Topic: Change LoginPage PaperCut MF/NG
Replies: 0
Views: 358

Change LoginPage PaperCut MF/NG

Open the refresh.css on the server. "c:\Program Files\PaperCut MF\server\tmp\webapp-59502\css\refresh.css" Browse to line 380. The following line can be used to setup transparancy or change text colours: #login th {color: #000; <-- fontcolor of username and password text. #login, #logonMes...
by administrator
Tue Oct 12, 2021 10:57 am
Forum: General Information
Topic: Install .net 3.5 on Windows Server 2019
Replies: 0
Views: 275

Install .net 3.5 on Windows Server 2019

Run gpedit.msc (Local Group Policy Editor) Navigate to Computer Configuration > Administrative Templates > System On the right, search for “Specify settings for optional component installation and component repair” images/Thumbs/net-framework-installation-windows-update.png Set it to Enabled and se...