Stefan Bender Posted April 3 Share Posted April 3 Dear developers, is it possible to use a contextual help ID instead of a URL in functions virtual void VCOM_CALLTYPE AlertDialogWithHyperlink(const TXString& message, const TXString& adviceBeforeLink, const TXString& linkTitle, const TXString& linkURL, const TXString& adviceAfterLink) = 0; virtual void VCOM_CALLTYPE AlertCriticalWithHyperlink(const TXString& text, const TXString& adviceBeforeLink, const TXString& linkTitle, const TXString& linkURL, const TXString& adviceAfterLink) = 0; virtual void VCOM_CALLTYPE AlertInformWithHyperlink(const TXString& text, const TXString& adviceBeforeLink, const TXString& linkTitle, const TXString& linkURL, const TXString& adviceAfterLink, bool minorAlert = false, const TXString& category = "", const TXString& item = "", const TXString& checkboxOverrideText = "") = 0; ? This would be very helpful. We would like to direct users to certain pages of our help system without having to update the links in our code each year or whenever the page structure of the online help changes. Thanks for any help! Quote Link to comment
JBenghiat Posted April 3 Share Posted April 3 I think that’s something you need to implement on the server side, routing to help pages based on a query. The help system I use has this as a feature, but I haven’t investigated it yet. On the VW side, you just need a helper function that constructs the link. Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.