Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
lee lee is offline
external usenet poster
 
Posts: 184
Default Check Box Status

I have a form which opens in Excel that allows users to display/hide tabs.
Theres 60+ tabs so the form allows them to see only the ones they want. The
form contains a series of check boxes that they check, then click on a
display/hide button, and hide the tabs that are not checked. At the end the
form closes.

I would like to change the form so when it is opened, the default for the
check box is based on the status of the tab. If the tab is showing its
corresponding check box is checked, if the tab is hidden, the check box is
not checked.

This is a sample of the routine that displays/hides the tabs and works fine

Private Sub DispHide_Btn_Click()
If Tsk_ChkBox = True Then Sheet4.Visible = xlSheetVisible Else:
Sheet4.Visible = xlSheetHidden
If ResComb_Chkbox = True Then Sheet21.Visible = xlSheetVisible Else:
Sheet21.Visible = xlSheetHidden
End Sub

This is a sample of the code I have to open the form, but it doesnt open
with the check boxes checked. The sheets are visible.

Private Sub OpenForm_Click()
DispHide_Frm.Show
If Sheet4.Visible = True Then Tsk_ChkBox = True
If Sheet21.Visible = True Then ResComb_Chkbox = True
End Sub

Any ideas on how to get the check boxes to open with a true status and
display checked?

Thanks for the help

--
Lee Kirts
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 23
Default Check Box Status

On Apr 18, 4:02 pm, Lee wrote:
This is a sample of the code I have to open the form, but it doesn't open
with the check boxes checked. The sheets are visible.

Private Sub OpenForm_Click()
DispHide_Frm.Show
If Sheet4.Visible = True Then Tsk_ChkBox = True
If Sheet21.Visible = True Then ResComb_Chkbox = True
End Sub


Hello Lee,

I'm not sure about this, but isn't it necessary to specify the
checkboxes as DispHide_Frm.Tsk_ChkBox and DispHide_Frm.ResComb_Chkbox
instead of just Tsk_ChkBox and ResComb_Chkbox?
Also, it may be helpful to run the debugger to see which step gives
you the unexpected result.

David

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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
check status bar condition [email protected] Excel Programming 2 November 1st 06 10:30 AM
I want to return a value based on the status of a check box. If . JROD Excel Worksheet Functions 1 April 4th 05 08:18 PM
Check Box Status Tom Excel Programming 2 February 16th 05 11:17 PM
Check status row (hidden or visible)? Martin Los Excel Programming 1 December 18th 03 03:32 PM
Check calculation status Jeff Excel Programming 2 November 25th 03 04:23 PM


All times are GMT +1. The time now is 02:52 PM.

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

About Us

"It's about Microsoft Excel"