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]