DIAdem

cancel
Showing results for 
Search instead for 
Did you mean: 

Hyperlink in Dialog box

Solved!
Go to solution

Hello there,

 

is it possible to add a hyperlink to a dialog box ? and if so, how. Thanks a lot Roman

0 Kudos
Message 1 of 3
(2,210 Views)
Solution
Accepted by topic author RomanKoleno

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

0 Kudos
Message 2 of 3
(2,204 Views)

Hi Winfried,

 

Yes! that is exactly what i needed. Thank you very much 

0 Kudos
Message 3 of 3
(2,195 Views)