Re: Links



I don't think that your question has to do anything with the Internet SDK, but I will try to help you.
you could try the following to make a window without address bar and everything:
<html>
<head>
<script type="text/javascript">
function display()
{
newwin=window.open( "about:blank", "Display", "dependent=no,menubar=no,statusbar=no,location=no,scrollbars=no,status=no,location=no");
newwin.document.write("<body bgcolor=\"red\"><a href=\"http://www.yourfirstlinkhere.com\";><img src=\"images/image1.jpg\" width=200></a><br><br><a href=\"http://www.yoursecondlinkhere.com\";><img src=\"images/image2.jpg\" width=200></a>");
self.close(); // Here the user will be asked if he wants to close the window
}
</script>
</head>
<body OnLoad="display()">
</body>
</html>


This solution is not very nice (because the user is asked if he wants to permit closing of the parent window). If you know about internet programming in MFC, you could just create a SDI application with a CHtmlView view.
On InitialUpdate, you would call SetFullScreen or SetTheaterMode and use Navigate2 to load your desktop HTML page.


I hope these ideas could help you

regards Leo

Big D wrote:
I am trying to accomplish creating a html page that uses one of the windows background. I plan on launching in kiosk mode. The purpose is to hide the desktop. I need use a image and place two icons that when clicked it will launch some other address. How can this be done.

1.HTML page that takes full length of display.(sold color)
2. embedded is two images that when clicked launch another webpage.

Thanks.


.



Relevant Pages

  • Re: How serious is the May window?
    ... The launch windows for the rest of the year are ... they don't launch in May or July, there's not much August window ... second one isn't used by the shuttle for range safety reasons; ... The two constraints above apply to any rendezvous flight, ...
    (sci.space.shuttle)
  • RE: SetForegroundWindow doesnt activate hidden main form / "Defau
    ... The problem had not been caused by some COM pointers. ... When looking for the application window, ... > Karl Traunmüller, CEO ... >> 4) Now, If I launch the application a second time, it doesn't get activated. ...
    (microsoft.public.pocketpc.developer)
  • Re: Top Level Form With Menu called from Modal form
    ... control) and Lists. ... list they can launch a List editor window which can launch the ... if the dropdown does not contain the statement that the user ...
    (microsoft.public.fox.vfp.forms)
  • Re: Word 2007 wont Launch
    ... If Safe mode doesn't allow it to launch, ... If Safe mode does allow Word to run, the next thing to try is to delete ... In Window XP, try this: ... Still looking at the left side of the Registry Editor window, ...
    (microsoft.public.word.docmanagement)
  • Re: XP2 SP2, Enterprise Security Client - Desktop + NAV
    ... > When I apply the Microsoft Enterprise Security - Desktop.inf template ... when logging on a window explorer drive box ... VPTray.exe not to launch. ... Workaround is enclose the run registry entry as "C:\program ...
    (microsoft.public.windowsxp.security_admin)

Loading