create links in msgbox in vb

The solution for “create links in msgbox in vb” can be found here. The following code will assist you in solving the problem.

Set objShell = CreateObject(“Wscript.Shell”)

intMessage = MsgBox(“Sorry, but you have an out-of-date database version. Please redownload via the batch file to ensure that you have the latest version. Contact the administrator of this database or your manager if you need help.” & vbCr _
& vbCr _
& “Your current database version is ” & CurrentVer & ” which may be out of date. The current database version prescribed on the network share is ” & FileVer & “. They must match in order for you to proceed.” & vbCr _
& vbCr _
& “Would you like to learn more about CSC self-help instructions on how to reload the most current version of the PRF Intake Tool to your computer?”, _
vbYesNo, “There is a problem…”)

If intMessage = vbYes Then
objShell.Run (“http://www.OurSite.com/online/Solutions/Search_Results.asp?opsystem=7&keywords=PRF+Intake+Tool&Category=”)
Else
Wscript.Quit
End If

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts