A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How to remove the restore window icon



 
 
Thread Tools Display Modes
  #1  
Old July 3rd, 2004, 09:19 PM
Bill Murphy
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

In the format window of the main form in my application I have removed the
close button, maximize and minimize buttons. But I can't see how to remove
the restore window icon in the upper right corner of the form window. I
would like to prevent end users from clicking on this icon. Any thoughts
would be appreciated.

Bill


  #2  
Old July 3rd, 2004, 09:25 PM
Ken Snell
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

Set the ControlBox property to No for the form.

--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
In the format window of the main form in my application I have removed the
close button, maximize and minimize buttons. But I can't see how to

remove
the restore window icon in the upper right corner of the form window. I
would like to prevent end users from clicking on this icon. Any thoughts
would be appreciated.

Bill




  #3  
Old July 3rd, 2004, 09:44 PM
Bill Murphy
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

Ken,

I had already set this to no, but I'm still getting the restore icon in the
upper right corner of the form, where the close, maximize and minimize icons
would ordinarily appear. This is a tabbed form which is the main form in my
application. It has quite a few tabs and subforms, so I'm not sure whether
settings in any of these subforms could be causing this.

I would like the user to be able to close the application with the close
icon which is on the far right of the application header of the screen, but
not be able to reduce the size of the tabbed form since there is no way to
re-maximize the tabbed form, which would tend to confuse the user.

Bill


"Ken Snell" wrote in message
...
Set the ControlBox property to No for the form.

--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
In the format window of the main form in my application I have removed

the
close button, maximize and minimize buttons. But I can't see how to

remove
the restore window icon in the upper right corner of the form window. I
would like to prevent end users from clicking on this icon. Any

thoughts
would be appreciated.

Bill






  #4  
Old July 3rd, 2004, 10:13 PM
Ken Snell
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

Ah, sorry. Misunderstood your question. I believe the only way to not have
that restore icon show is to not open the form in maximized view, but in a
restored view that is essentially the size of the PC screen (of course, this
means that it may not cover the entire screen as resolutions change on PC
monitors). You'd need to open the form either in popup mode (size the form
in design view while restored to the desired size and position) or else run
a "restore" command on the form in the OnLoad event:
DoCmd.Restore

Note that this "restore" command will also cause the Deactivate and Activate
events to occur, so if you have code in them be aware of that.
--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
Ken,

I had already set this to no, but I'm still getting the restore icon in

the
upper right corner of the form, where the close, maximize and minimize

icons
would ordinarily appear. This is a tabbed form which is the main form in

my
application. It has quite a few tabs and subforms, so I'm not sure

whether
settings in any of these subforms could be causing this.

I would like the user to be able to close the application with the close
icon which is on the far right of the application header of the screen,

but
not be able to reduce the size of the tabbed form since there is no way to
re-maximize the tabbed form, which would tend to confuse the user.

Bill


"Ken Snell" wrote in message
...
Set the ControlBox property to No for the form.

--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
In the format window of the main form in my application I have removed

the
close button, maximize and minimize buttons. But I can't see how to

remove
the restore window icon in the upper right corner of the form window.

I
would like to prevent end users from clicking on this icon. Any

thoughts
would be appreciated.

Bill








  #5  
Old July 3rd, 2004, 11:18 PM
Jeff Conrad
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

To have the best of both worlds with a *maximized* form and no restore
button is to use the code found he

http://www.mvps.org/access/api/api0022.htm

I use it all the time and it works great.

--
Jeff Conrad
Access Junkie
Bend, Oregon


"Ken Snell" wrote in message
...
Ah, sorry. Misunderstood your question. I believe the only way to not have
that restore icon show is to not open the form in maximized view, but in a
restored view that is essentially the size of the PC screen (of course,

this
means that it may not cover the entire screen as resolutions change on PC
monitors). You'd need to open the form either in popup mode (size the form
in design view while restored to the desired size and position) or else

run
a "restore" command on the form in the OnLoad event:
DoCmd.Restore

Note that this "restore" command will also cause the Deactivate and

Activate
events to occur, so if you have code in them be aware of that.
--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
Ken,

I had already set this to no, but I'm still getting the restore icon in

the
upper right corner of the form, where the close, maximize and minimize

icons
would ordinarily appear. This is a tabbed form which is the main form

in
my
application. It has quite a few tabs and subforms, so I'm not sure

whether
settings in any of these subforms could be causing this.

I would like the user to be able to close the application with the close
icon which is on the far right of the application header of the screen,

but
not be able to reduce the size of the tabbed form since there is no way

to
re-maximize the tabbed form, which would tend to confuse the user.

Bill


"Ken Snell" wrote in message
...
Set the ControlBox property to No for the form.

--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
In the format window of the main form in my application I have

removed
the
close button, maximize and minimize buttons. But I can't see how to
remove
the restore window icon in the upper right corner of the form

window.
I
would like to prevent end users from clicking on this icon. Any

thoughts
would be appreciated.

Bill



  #6  
Old July 3rd, 2004, 11:45 PM
Albert D. Kallal
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

Well, of course they can see it, but it is not functional if your tuned off
the min/max.

However, if you also remove the control box, then you don't see any thing on
the bar.

so, set the control box property to no, and that should work..


--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada

http://www.attcanada.net/~kallal.msn


  #7  
Old July 3rd, 2004, 11:50 PM
Bill Murphy
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

Jeff and Ken,

Thanks for the pointers.

Bill


"Jeff Conrad" wrote in message
...
To have the best of both worlds with a *maximized* form and no restore
button is to use the code found he

http://www.mvps.org/access/api/api0022.htm

I use it all the time and it works great.

--
Jeff Conrad
Access Junkie
Bend, Oregon


"Ken Snell" wrote in message
...
Ah, sorry. Misunderstood your question. I believe the only way to not

have
that restore icon show is to not open the form in maximized view, but in

a
restored view that is essentially the size of the PC screen (of course,

this
means that it may not cover the entire screen as resolutions change on

PC
monitors). You'd need to open the form either in popup mode (size the

form
in design view while restored to the desired size and position) or else

run
a "restore" command on the form in the OnLoad event:
DoCmd.Restore

Note that this "restore" command will also cause the Deactivate and

Activate
events to occur, so if you have code in them be aware of that.
--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
Ken,

I had already set this to no, but I'm still getting the restore icon

in
the
upper right corner of the form, where the close, maximize and minimize

icons
would ordinarily appear. This is a tabbed form which is the main form

in
my
application. It has quite a few tabs and subforms, so I'm not sure

whether
settings in any of these subforms could be causing this.

I would like the user to be able to close the application with the

close
icon which is on the far right of the application header of the

screen,
but
not be able to reduce the size of the tabbed form since there is no

way
to
re-maximize the tabbed form, which would tend to confuse the user.

Bill


"Ken Snell" wrote in message
...
Set the ControlBox property to No for the form.

--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
In the format window of the main form in my application I have

removed
the
close button, maximize and minimize buttons. But I can't see how

to
remove
the restore window icon in the upper right corner of the form

window.
I
would like to prevent end users from clicking on this icon. Any
thoughts
would be appreciated.

Bill





  #8  
Old July 4th, 2004, 12:13 AM
Ken Snell
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

Thanks, Jeff.... I need to spend some more time on The ACCESS Web and be
more knowledgeable about all its contents!
g


"Jeff Conrad" wrote in message
...
To have the best of both worlds with a *maximized* form and no restore
button is to use the code found he

http://www.mvps.org/access/api/api0022.htm

I use it all the time and it works great.

--
Jeff Conrad
Access Junkie
Bend, Oregon


"Ken Snell" wrote in message
...
Ah, sorry. Misunderstood your question. I believe the only way to not

have
that restore icon show is to not open the form in maximized view, but in

a
restored view that is essentially the size of the PC screen (of course,

this
means that it may not cover the entire screen as resolutions change on

PC
monitors). You'd need to open the form either in popup mode (size the

form
in design view while restored to the desired size and position) or else

run
a "restore" command on the form in the OnLoad event:
DoCmd.Restore

Note that this "restore" command will also cause the Deactivate and

Activate
events to occur, so if you have code in them be aware of that.
--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
Ken,

I had already set this to no, but I'm still getting the restore icon

in
the
upper right corner of the form, where the close, maximize and minimize

icons
would ordinarily appear. This is a tabbed form which is the main form

in
my
application. It has quite a few tabs and subforms, so I'm not sure

whether
settings in any of these subforms could be causing this.

I would like the user to be able to close the application with the

close
icon which is on the far right of the application header of the

screen,
but
not be able to reduce the size of the tabbed form since there is no

way
to
re-maximize the tabbed form, which would tend to confuse the user.

Bill


"Ken Snell" wrote in message
...
Set the ControlBox property to No for the form.

--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
In the format window of the main form in my application I have

removed
the
close button, maximize and minimize buttons. But I can't see how

to
remove
the restore window icon in the upper right corner of the form

window.
I
would like to prevent end users from clicking on this icon. Any
thoughts
would be appreciated.

Bill





  #9  
Old July 4th, 2004, 04:15 AM
Jeff Conrad
external usenet poster
 
Posts: n/a
Default How to remove the restore window icon

You're welcome Ken and Bill.
:-)

--
Jeff Conrad
Access Junkie
Bend, Oregon


"Ken Snell" wrote in message
...
Thanks, Jeff.... I need to spend some more time on The ACCESS Web and be
more knowledgeable about all its contents!
g


"Jeff Conrad" wrote in message
...
To have the best of both worlds with a *maximized* form and no restore
button is to use the code found he

http://www.mvps.org/access/api/api0022.htm

I use it all the time and it works great.

--
Jeff Conrad
Access Junkie
Bend, Oregon


"Ken Snell" wrote in message
...
Ah, sorry. Misunderstood your question. I believe the only way to not

have
that restore icon show is to not open the form in maximized view, but

in
a
restored view that is essentially the size of the PC screen (of

course,
this
means that it may not cover the entire screen as resolutions change on

PC
monitors). You'd need to open the form either in popup mode (size the

form
in design view while restored to the desired size and position) or

else
run
a "restore" command on the form in the OnLoad event:
DoCmd.Restore

Note that this "restore" command will also cause the Deactivate and

Activate
events to occur, so if you have code in them be aware of that.
--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
Ken,

I had already set this to no, but I'm still getting the restore icon

in
the
upper right corner of the form, where the close, maximize and

minimize
icons
would ordinarily appear. This is a tabbed form which is the main

form
in
my
application. It has quite a few tabs and subforms, so I'm not sure
whether
settings in any of these subforms could be causing this.

I would like the user to be able to close the application with the

close
icon which is on the far right of the application header of the

screen,
but
not be able to reduce the size of the tabbed form since there is no

way
to
re-maximize the tabbed form, which would tend to confuse the user.

Bill


"Ken Snell" wrote in message
...
Set the ControlBox property to No for the form.

--

Ken Snell
MS ACCESS MVP

"Bill Murphy" wrote in message
...
In the format window of the main form in my application I have

removed
the
close button, maximize and minimize buttons. But I can't see

how
to
remove
the restore window icon in the upper right corner of the form

window.
I
would like to prevent end users from clicking on this icon. Any
thoughts
would be appreciated.

Bill







 




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 Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Restore button George Randall General Discussion 3 July 1st, 2004 11:57 PM
Unable to launch Outlook 2003 in "Normal" window Torrence Hammond General Discussion 0 June 21st, 2004 02:16 PM
Remove or hide OE icon in start menu Jeff Pitsch Outlook Express 3 June 14th, 2004 03:48 PM
office 2000 remove tools bud Setup, Installing & Configuration 1 May 27th, 2004 10:40 AM


All times are GMT +1. The time now is 08:59 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.