Posted November 30, 201014 yr Hello,How can I insert an external link in a MessageBox in the WinAsm studio?
December 1, 201014 yr MessageBox function is very simple, it doesn't give much options.You can just create custom dialog that shows your hyperlink in style similar to MessageBox.Or, you can choose the hard way and subclass the default MessageBox window and repaint it's contents - I don't recommend it.
December 1, 201014 yr Author Dear GamingMasteR I'm newbie in assembly programing and I cant subclass the default MessageBox. Is there any function like MessageBox for insert a hyperlink? It's strange that we cant easily use hyperlinks in message boxes.
December 1, 201014 yr go for a custom dialog...a lot easier. Edited December 1, 201014 yr by deepzero
December 1, 201014 yr AFAIK, there's no direct function for displaying message box with hyperlinks. It's easer to create custom dialog as said.
December 1, 201014 yr Here is a project which shows how to subclass messageboxes to add a checkbox, you could adapt this to be a hyperlink instead couldn't you?/>http://www.codeproject.com/KB/dialog/donotaskagainmsgbox.aspxHR,Ghandi Edited December 1, 201014 yr by ghandi
Create an account or sign in to comment