Ask a Question related to Microsoft Access, Design and Development.
-
Allen Browne #1
Re: Hide text boxes based upon page selection via tab controls
Use the Change event of the tab control.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - [url]http://allenbrowne.com/tips.html[/url]
Reply to the newsgroup. (Email address has spurious "_SpamTrap")
"Crystal" <crystal.rouse@sycoleman.com> wrote in message
news:a88301c346f5$579a55d0$a401280a@phx.gbl...> Hello!
>
> I'm hoping someone can offer some suggestions. I have a
> form with a tab control. The tab control has 5 different
> pages. One of these is Reports. When the user clicks on
> the Reports Tab I need to hide 2 label and 2 text boxes.
>
> I've tried several variations of the below code. Each try
> actually hides the controls BUT when you click on the
> other tabs they are still hidden. How can I get them to
> be visible when clicking to view the other pages on my
> Form?
>
> Private Sub TabCtl38_Click()
>
> Dim bShow As Boolean
>
> bShow = Not (Me.TabCtl38.Value = Me.Reports.PageIndex)
>
> If Me.TabCtl38.Value <> bShow Then
> Me.GFX_ID_Label.Visible = False
> Else
> Me.GFX_ID_Label.Visible = True
> End If
>
> End Sub
Allen Browne Guest
-
Master page has text added automaticalllywhen I flow text to a new page that is based on it
Have the Adobe software engineers addressed this problem yet. I have a 200-page document that I've been fighting with for weeks. It is a document I... -
A selection changes on asp page with 6 dependent list boxes, when back
Hello I have 6 dependent list boxes on my ASP page: Faculty; Lecturer; Course; Course occurrence; Group; Week commencing date.... -
display text field based on the selection choices
I want to display credit card fields when the user selects the option paid membership. If user selects the option free membership, then the credit... -
How can u connect to 1 of several dbs based on selection user makes when accessing main page
We have a web site IIS 5 (on Win2000k) with Oracle 9i backend (Sun unix). There is 1 user ID to oracle(APT_W3) that is used by all users (50). ... -
Highlighting Selection in non-editable text boxes
Hello all, a quick question. For a non-editable text box is there anyway to highlight the background (like when you hold the mouse button and...



Reply With Quote

