353 Subj : Re: How to embed an URL in Borland C++ 4.53 Dialog? To : borland.public.cpp.borlandcpp From : maeder@glue.ch (Thomas Maeder [TeamB]) Date : Wed Jul 23 2003 04:43 pm "Pat" writes: > I am working with Borland 4.53. I have to show a URL in my 'About' Dialog > and on clicking on it the related wep page should open. > Is this possible in Borland 4.53. If not is there any 3rd party > tool/software that I can use? Depends on which Windows API your programming against. If it is recent enough, you could use ShellExecute to launch a .html document with the program associated to that filename extension: Cf. http://tinyurl.com/hsgz (aka http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/shell/reference/functions/shellexecute.asp , but the latter might wrap). . 0