06-13-2018 03:42 AM
Hello there,
is it possible to add a hyperlink to a dialog box ? and if so, how. Thanks a lot Roman
Solved! Go to Solution.
06-13-2018 03:58 AM
Hi Roman
you could create a text and then add a click event. To chance the mouse cursor you could also add a MouseMove event:
Sub Text1_EventClick(ByRef This)
Call ExtProgram("","http://www.ni.com")
End Sub
Sub Text1_EventMouseMove(ByRef This, Button, Shift, X, Y)
this.CursorPointer = 7
End Sub
Hope this helps
Winfried
06-13-2018 04:25 AM
Hi Winfried,
Yes! that is exactly what i needed. Thank you very much