Webmaster Forum

Sponsored Reviews   PR6 Link Building Service   V7N Directory
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Coding Forum Problems with your code? Let's hear about it.

Reply
 
LinkBack Thread Tools Display Modes
Old 09-07-2007, 01:07 AM   #1 (permalink)
Contributing Member
 
fairyjo's Avatar
 
Join Date: 10-13-03
Location: Switzerland
Posts: 581
iTrader: 0 / 0%
Latest Blog:
None

fairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nice
Send a message via MSN to fairyjo Send a message via Skype™ to fairyjo
Question Intranet: open local file in fullscreen mode

Hello,

Couldn't find any help on the web about this, I hope you will be able to help me.

I am working on an intranet website for a company and it's extremely simple I can only make static html pages. They wanted to use an MS Access application they have created on their local file server. I managed to create a link from the intranet page to the Access applicaton but the application opens in a sized window and not in a "maximized" window.

I cannot find a way to have the application opening in fullscreen. Do you know how I could achieve this? Any hint or help would be very much appreciated. Thanks a lot in advance, sincerely,
Joanie
__________________
Look who's standing if you please
Though you tried to bring me to my knees...
Michael Jackson
fairyjo is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 09-07-2007, 03:50 AM   #2 (permalink)
v7n Mentor
 
Costin Trifan's Avatar
 
Join Date: 04-13-07
Location: Romania (atm)
Posts: 2,846
iTrader: 0 / 0%
Costin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web pro
Add this script in the head tag of the window that displays the Access app:
Code:
<script type="text/javascript"> top.window.moveTo(0,0); if (document.all || document.layers|| document.getElementById) top.window.resizeTo(screen.availWidth,screen.availHeight); </script>

And in the page that's calling the page above set the link target to "_blank":
Code:
<a href="accessPage.htm" target="_blank">new window</a>
This will resize your access page to fit the screen no matter what screen resolution user uses. Browsers supported: IE 5+ , Opera 9 & FF 2

I hope this is what you want.
Costin Trifan is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-07-2007, 05:51 AM   #3 (permalink)
CEO, V7 Inc
 
John Scott's Avatar
 
Join Date: 09-27-03
Location: Japan, mostly
Posts: 42,117
iTrader: 2 / 100%
John Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster materialJohn Scott is supreme webmaster material
Send a message via AIM to John Scott Send a message via Yahoo to John Scott
Long time no see, fairyjo
__________________
Buy Permanent Contextual Links - V7N Web Directory

Questions? Call V7 toll free @ 1.888.876.8762
John Scott is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-11-2007, 09:35 AM   #4 (permalink)
Contributing Member
 
fairyjo's Avatar
 
Join Date: 10-13-03
Location: Switzerland
Posts: 581
iTrader: 0 / 0%
Latest Blog:
None

fairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nice
Send a message via MSN to fairyjo Send a message via Skype™ to fairyjo
Hello Costin,
Thanks for your script, I tried it, unfortunately it doesn't work. The Access application still opens in a sized window. Any other idea?

Hi John,
Yes I know I don't come so often any more, but I still know where to come for help
__________________
Look who's standing if you please
Though you tried to bring me to my knees...
Michael Jackson
fairyjo is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-11-2007, 09:47 AM   #5 (permalink)
v7n Mentor
 
Costin Trifan's Avatar
 
Join Date: 04-13-07
Location: Romania (atm)
Posts: 2,846
iTrader: 0 / 0%
Costin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web pro
The Access app is displayed in a browser window and not in an Access form, right?

I ask because this script is resizing any browser window with no problems...
Costin Trifan is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-11-2007, 10:00 AM   #6 (permalink)
Contributing Member
 
fairyjo's Avatar
 
Join Date: 10-13-03
Location: Switzerland
Posts: 581
iTrader: 0 / 0%
Latest Blog:
None

fairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nicefairyjo is just really nice
Send a message via MSN to fairyjo Send a message via Skype™ to fairyjo
Well, no the Access app is opened in an Access form, sorry I didn't make it clear in the first place.

I tried to link to a shortcut on the file server, as I could set the shortcut to open a maximized window, but this didn't work either.

Quote:
Originally Posted by Costin Trifan View Post
The Access app is displayed in a browser window and not in an Access form, right?

I ask because this script is resizing any browser window with no problems...
__________________
Look who's standing if you please
Though you tried to bring me to my knees...
Michael Jackson

Last edited by fairyjo : 09-11-2007 at 10:11 AM. Reason: add information
fairyjo is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-11-2007, 02:37 PM   #7 (permalink)
v7n Mentor
 
Costin Trifan's Avatar
 
Join Date: 04-13-07
Location: Romania (atm)
Posts: 2,846
iTrader: 0 / 0%
Costin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web proCostin Trifan is a highly respected web pro
I've found this: http://www.techonthenet.com/access/s...d/maximize.php

(it's better explained here)

One other thing, on other site I've seen that they add that DoCmd.Maximize in the 'On Activate' event but I think it's better when it's set in the Form_Load event, though...
Costin Trifan is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby > Coding Forum

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Intranet Redirect dazedand Coding Forum 0 02-05-2007 05:51 PM
Anyone know how to open a DAT file? Heather Computers & Internet 16 08-10-2006 07:19 PM
open file in PHP with proxy wibysono Coding Forum 1 05-20-2006 09:13 PM
Open CDR file with Illustrator CS2 URGENT Kotzko Graphic Design Forum 4 04-16-2006 05:15 PM


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 05:21 AM.
© Copyright 2008 V7 Inc


Search Engine Optimization by vBSEO 3.1.0 ©2007, Crawlability, Inc.