Locking a window so it can't be closed, navigated, etc?

M

Mr B

Well, just taking a shot since I doubt some of this is even possible but....

I'm working on our Exit Survey system we want to use at a local Home and Garden show. We want to
have some PCs set up and linked to another one running IIS and let people fill out the survey
online.

However, we don't want people to be able to close the window, open other windows, etc and mess
everything up.

Ideally we'd want to have the desktop set with just one icon for the Survey. Then once it's open,
we want to have all the toolbars and such Hidden to minimize any forward, back, etc going on.

We'd also like to somehow prevent the window from being closed.

Basically we'd like to lock it down as much as physically possible. Can anyone recommend how we
could accomplish any of this? I'm not sure if it can be done with scripting to intercept keystrokes
or something like that or what.

Thanks for any ideas.
 
T

Thomas A. Rowe

Suggest that you post to the IE newsgroup regarding using the Kisok mode.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================


Mr B said:
Well, just taking a shot since I doubt some of this is even possible but....

I'm working on our Exit Survey system we want to use at a local Home and Garden show. We want to
have some PCs set up and linked to another one running IIS and let people fill out the survey
online.

However, we don't want people to be able to close the window, open other windows, etc and mess
everything up.

Ideally we'd want to have the desktop set with just one icon for the Survey. Then once it's open,
we want to have all the toolbars and such Hidden to minimize any forward, back, etc going on.

We'd also like to somehow prevent the window from being closed.

Basically we'd like to lock it down as much as physically possible. Can anyone recommend how we
could accomplish any of this? I'm not sure if it can be done with
scripting to intercept keystrokes
 
B

Bob Lehmann

You can open a window without toolbars etc - search google for scripts, but
nothing else you want to do can be done.

It's a bad idea anyway. How would you feel if you went to a site that you
couldn't leave? That would be like visiting the in-laws :>)

Try a desktop app if you need that much control.

Bob Lehmann

Mr B said:
Well, just taking a shot since I doubt some of this is even possible but....

I'm working on our Exit Survey system we want to use at a local Home and Garden show. We want to
have some PCs set up and linked to another one running IIS and let people fill out the survey
online.

However, we don't want people to be able to close the window, open other windows, etc and mess
everything up.

Ideally we'd want to have the desktop set with just one icon for the Survey. Then once it's open,
we want to have all the toolbars and such Hidden to minimize any forward, back, etc going on.

We'd also like to somehow prevent the window from being closed.

Basically we'd like to lock it down as much as physically possible. Can anyone recommend how we
could accomplish any of this? I'm not sure if it can be done with
scripting to intercept keystrokes
 
S

Steve Easton

Internet Explorer Kiosk mode:
http://support.microsoft.com/defaul...port/kb/articles/q154/7/80.asp&NoWebContent=1

--
using 2k PRO but....95isalive
This site is best viewed............
........................with a computer

Mr B said:
Well, just taking a shot since I doubt some of this is even possible but....

I'm working on our Exit Survey system we want to use at a local Home and Garden show. We want to
have some PCs set up and linked to another one running IIS and let people fill out the survey
online.

However, we don't want people to be able to close the window, open other windows, etc and mess
everything up.

Ideally we'd want to have the desktop set with just one icon for the Survey. Then once it's open,
we want to have all the toolbars and such Hidden to minimize any forward, back, etc going on.

We'd also like to somehow prevent the window from being closed.

Basically we'd like to lock it down as much as physically possible. Can anyone recommend how we
could accomplish any of this? I'm not sure if it can be done with
scripting to intercept keystrokes
 
X

xmas

Mr. B,

Maybe this will work for you....
(I just coppied the whole page)
Warning once opened it will be hard to close...
=====================================
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Full Window Button</title>
<script>
<!--
/*
Full Screen Window Opener Script Change Sample.htm to
what ever the page you want as a full window.
*/
function fullwin(){
window.open("sample.htm","","fullscreen,scrollbars")
}
//-->
</script>
</head>
<body bgcolor="#0000FF">
<p align="center">&nbsp;
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">
<form>
<a href="sample.htm">
<input type="button" onClick="fullwin()" value="Open window"
style="background-color: #00FFFF">
</a>
</form>
</p>
</body>
</html>
===================================

I used this for a kiosk and it worked very well..

xmas
www.xmas-i-am.com
=====================================

| Well, just taking a shot since I doubt some of this is even possible
but....
|
| I'm working on our Exit Survey system we want to use at a local Home and
Garden show. We want to
| have some PCs set up and linked to another one running IIS and let people
fill out the survey
| online.
|
| However, we don't want people to be able to close the window, open other
windows, etc and mess
| everything up.
|
| Ideally we'd want to have the desktop set with just one icon for the
Survey. Then once it's open,
| we want to have all the toolbars and such Hidden to minimize any forward,
back, etc going on.
|
| We'd also like to somehow prevent the window from being closed.
|
| Basically we'd like to lock it down as much as physically possible. Can
anyone recommend how we
| could accomplish any of this? I'm not sure if it can be done with
scripting to intercept keystrokes
| or something like that or what.
|
| Thanks for any ideas.
|
 
X

xmas

Bob,

He is talking about a kiosk type of application not the internet.....

xmas
==========================
| You can open a window without toolbars etc - search google for scripts,
but
| nothing else you want to do can be done.
|
| It's a bad idea anyway. How would you feel if you went to a site that you
| couldn't leave? That would be like visiting the in-laws :>)
|
| Try a desktop app if you need that much control.
|
| Bob Lehmann
|
| | > Well, just taking a shot since I doubt some of this is even possible
| but....
| >
| > I'm working on our Exit Survey system we want to use at a local Home and
| Garden show. We want to
| > have some PCs set up and linked to another one running IIS and let
people
| fill out the survey
| > online.
| >
| > However, we don't want people to be able to close the window, open other
| windows, etc and mess
| > everything up.
| >
| > Ideally we'd want to have the desktop set with just one icon for the
| Survey. Then once it's open,
| > we want to have all the toolbars and such Hidden to minimize any
forward,
| back, etc going on.
| >
| > We'd also like to somehow prevent the window from being closed.
| >
| > Basically we'd like to lock it down as much as physically possible. Can
| anyone recommend how we
| > could accomplish any of this? I'm not sure if it can be done with
| scripting to intercept keystrokes
| > or something like that or what.
| >
| > Thanks for any ideas.
| >
|
|
 
M

Mike

There are LOTS of ways to accompish this in a non-browser-
based client/server app written in VB, VB.NET or almost
anything else. But you can't do it in FrontPage because
the browsers won't allow this behavior. There are ways
with the browser to maximize the window and hide the
menus, etc., but the user who know the Alt+F4 shortcut
will always be able to close the window. Disabling that
can't be done in the browser.
 
S

Stefan B Rusynko

Or since those keys are not used in the browser or in the kiosk use charmap in windows to remap those keys to useless functions




| There are LOTS of ways to accompish this in a non-browser-
| based client/server app written in VB, VB.NET or almost
| anything else. But you can't do it in FrontPage because
| the browsers won't allow this behavior. There are ways
| with the browser to maximize the window and hide the
| menus, etc., but the user who know the Alt+F4 shortcut
| will always be able to close the window. Disabling that
| can't be done in the browser.
 
Top