WELCOME TO THE COMMUNITY
find what you are looking for or ask a new question
Home > User Voice > Latest posts

User Voice

This will be grate like in for ex. in VBA:
https://learn.microsoft.com/pl-pl/office/vba/language/reference/user-interface-help/msgbox-function

Syntax
MsgBox (prompt, [ buttons, ] [ title, ] [ helpfile, context ])

for:
helpfile << could be html link to file

example of "data"

[code=VB]
Dim Msg, Style, Title, Help, Ctxt, Response, MyString
Msg = "Do you want to continue ?" ' Define message.
Style = vbYesNo Or vbCritical Or vbDefaultButton2 ' Define buttons.
Title = "MsgBox Demonstration" ' Define title.
Help = "DEMO.HLP" ' Define Help file.
Ctxt = 1000 ' Define topic context.
' Display message.
Response = MsgBox(Msg, Style, Title, Help, Ctxt)
If Response = vbYes Then ' User chose Yes.
MyString = "Yes" ' Perform some action.
Else ' User chose No.
MyString = "No" ' Perform some action.
End If

[/CODE]

MVP

Hi,

if we have a chart with a detail level, you can click on a chart element to see the elements, these information are displayed as tiles. At least if the chart is located in a row set to "one-third column" and the chart is located in the smaller part.

It would be great if we could also define the display mode of a report for a chart. This display mode would be applied to the detail level of the chart. This would allow us to get a better overview even if the number of columns is limited.

Best regards,
Daniel

In reply to: Daniel Krüger (Cosmo Consult)

Hi Dariusz,

are you using a version < 2022? In 2022 "Working on behalf" was added and I'm really glad is has been added :)

https://community.webcon.com/posts/post/substitutions-on-behalf/307/17

Best regards,
Daniel

With system administrator/business administrator privileges, we have the highest privileges. When setting a replacement for an employee with less privileges, we do not need to check what he sees, because we will still see everything that comes out of the administrator's privileges. I'm not talking about working as user -> user, but about working as an administrator -> user.

Hi,

I think it would be great if we could switch from the BPS Portal to the user's account and check what he sees on the form and reports. The system and business (global) administrator would have such privileges. From the BPS Portal level, he could use the icon to switch to any user's account (administrative mode). Sometimes data source values ​​are filtered and there is no way to see what the user actually sees.

Regards,
D.

MVP

Hi,

the "new" confirm/alert functions are really great and please don't remove the option to pass HTML as a parameter. :)

Yet there's always room for improvement. Could we get additional/optional parameter for the title, yes and no button?

Depending on the context the labels "Confirmation", "Yes" and "No" may not be the best.

For example this would be the default labels
Title: Confirmation
Text: If you progress, this will trigger the deletion of xyz
Buttons Yes, No

This would be an alternative using the suggested parameters
Title: Delete everything?
Text: If you progress, this will trigger the deletion of xyz
Buttons Yes, I know what I'm doing ; Cancel the action

Best regards,
Daniel







Best regards,
Daniel