ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   pop up (https://www.excelbanter.com/excel-programming/373267-pop-up.html)

Anna

pop up
 
I am working on a document that has a lot of very important disclosures. I
would like the users of this doc to read the disclosure tab before they
proceed to the actual document. I was thinking about creating a pop-up box
that would open when they click on the doc tab (it would say "I've read and
understand the disclosures" or something along those lines). Or maybe a
pop-up box to ask them if they agree and would like to proceed.

Any idea on how to do this?

Thanks!

Pops Jackson

pop up
 
One idea would be to have the workbook open with only the disclosure tab
visible. A button on the sheet could be used as "I have read and
understand..." and make the doc tab(s) visible for viewing.
--
Pops Jackson


"Anna" wrote:

I am working on a document that has a lot of very important disclosures. I
would like the users of this doc to read the disclosure tab before they
proceed to the actual document. I was thinking about creating a pop-up box
that would open when they click on the doc tab (it would say "I've read and
understand the disclosures" or something along those lines). Or maybe a
pop-up box to ask them if they agree and would like to proceed.

Any idea on how to do this?

Thanks!


Anna

pop up
 
Thanks so much! That is a great idea. Now I just have to figure out how to do
it! :)

"Pops Jackson" wrote:

One idea would be to have the workbook open with only the disclosure tab
visible. A button on the sheet could be used as "I have read and
understand..." and make the doc tab(s) visible for viewing.
--
Pops Jackson


"Anna" wrote:

I am working on a document that has a lot of very important disclosures. I
would like the users of this doc to read the disclosure tab before they
proceed to the actual document. I was thinking about creating a pop-up box
that would open when they click on the doc tab (it would say "I've read and
understand the disclosures" or something along those lines). Or maybe a
pop-up box to ask them if they agree and would like to proceed.

Any idea on how to do this?

Thanks!


Pops Jackson

pop up
 
Sorry about that. The dangers of assuming too much have reared their ugly
faces!

Place the Disclosure tab in the first position on the left. Excel will
consider that as Sheet(1). Then put this code in a module.

Sub Auto_Open()
For x = 2 to sheets.count
sheets(x).visible = false
next x
end sub

Then add a command button to the Disclosure sheet. If the Control Toolbox is
not visible, click "View/Toolbars/Control Toolbox" The Command Button icon
is a grey rectangle shape. Click it and then click the location where you
want the button.

Double-click the button and a sub routine will be displayed.

Private Sub CommandButton1_Click()
' Enter this into the routine
Sheets("MyDocument1").Visible = True
Sheets("MyDocument2").Visible = True ' etc.
' If there are multiple sheets to display
Sheets("MyDocument1").Activate
End Sub

Let me know if your have more questions. I will help all I can.

Jim

--
Pops Jackson


"Anna" wrote:

Thanks so much! That is a great idea. Now I just have to figure out how to do
it! :)

"Pops Jackson" wrote:

One idea would be to have the workbook open with only the disclosure tab
visible. A button on the sheet could be used as "I have read and
understand..." and make the doc tab(s) visible for viewing.
--
Pops Jackson


"Anna" wrote:

I am working on a document that has a lot of very important disclosures. I
would like the users of this doc to read the disclosure tab before they
proceed to the actual document. I was thinking about creating a pop-up box
that would open when they click on the doc tab (it would say "I've read and
understand the disclosures" or something along those lines). Or maybe a
pop-up box to ask them if they agree and would like to proceed.

Any idea on how to do this?

Thanks!


Pops Jackson

pop up
 
I forgot to add that, while the button is in "design" mode (Surrounded by
small circles in the corners on on the sides), you can right-click on it and
choose "Properties" which will display an editing table for you to modify the
button to your liking.
--
Pops Jackson


"Anna" wrote:

Thanks so much! That is a great idea. Now I just have to figure out how to do
it! :)

"Pops Jackson" wrote:

One idea would be to have the workbook open with only the disclosure tab
visible. A button on the sheet could be used as "I have read and
understand..." and make the doc tab(s) visible for viewing.
--
Pops Jackson


"Anna" wrote:

I am working on a document that has a lot of very important disclosures. I
would like the users of this doc to read the disclosure tab before they
proceed to the actual document. I was thinking about creating a pop-up box
that would open when they click on the doc tab (it would say "I've read and
understand the disclosures" or something along those lines). Or maybe a
pop-up box to ask them if they agree and would like to proceed.

Any idea on how to do this?

Thanks!



All times are GMT +1. The time now is 01:20 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com